22 lines
672 B
Zig
22 lines
672 B
Zig
.{
|
|
.id = "dev.native_sdk.mobile_canvas",
|
|
.name = "mobile-canvas",
|
|
.display_name = "Mobile Canvas",
|
|
.version = "0.1.0",
|
|
.platforms = .{ "ios", "android" },
|
|
.permissions = .{},
|
|
.capabilities = .{ "native_views", "gpu_surfaces" },
|
|
.shell = .{
|
|
.windows = .{
|
|
.{
|
|
.label = "main",
|
|
.title = "Mobile Canvas",
|
|
.views = .{
|
|
.{ .label = "mobile-surface", .kind = "gpu_surface", .fill = true, .role = "Mobile canvas", .accessibility_label = "Mobile canvas", .gpu_backend = "metal" },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
.web_engine = "system",
|
|
}
|