add(element/radio-button): RadioButton Element implementation
Some checks failed
Zig Project Action / Lint, Spell-check and test zig project (push) Failing after 2m6s

This can be used to visualize the values of `bool`'s, which is relevant
when creating form's based on `struct`'s automatically.
This commit is contained in:
2025-07-13 21:02:28 +02:00
parent df78c7d6eb
commit 088e1a9246
4 changed files with 165 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ pub fn build(b: *std.Build) void {
button,
input,
progress,
radio_button,
scrollable,
// layouts:
vertical,
@@ -62,6 +63,7 @@ pub fn build(b: *std.Build) void {
.button => "examples/elements/button.zig",
.input => "examples/elements/input.zig",
.progress => "examples/elements/progress.zig",
.radio_button => "examples/elements/radio-button.zig",
.scrollable => "examples/elements/scrollable.zig",
// layouts:
.vertical => "examples/layouts/vertical.zig",