feat(element/selection): Element implementation for selecting an enum variant
Some checks failed
Zig Project Action / Lint, Spell-check and test zig project (push) Failing after 1m35s

This commit is contained in:
2025-07-16 21:39:45 +02:00
parent 088e1a9246
commit 0de50e7016
4 changed files with 252 additions and 7 deletions

View File

@@ -13,6 +13,7 @@ pub fn build(b: *std.Build) void {
progress,
radio_button,
scrollable,
selection,
// layouts:
vertical,
horizontal,
@@ -65,6 +66,7 @@ pub fn build(b: *std.Build) void {
.progress => "examples/elements/progress.zig",
.radio_button => "examples/elements/radio-button.zig",
.scrollable => "examples/elements/scrollable.zig",
.selection => "examples/elements/selection.zig",
// layouts:
.vertical => "examples/layouts/vertical.zig",
.horizontal => "examples/layouts/horizontal.zig",