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

@@ -416,6 +416,7 @@ pub fn App(comptime E: type) type {
pub const Button = element.Button(Event, Queue);
pub const Input = element.Input(Event, Queue);
pub const Progress = element.Progress(Event, Queue);
pub const RadioButton = element.RadioButton(Event);
pub const Scrollable = element.Scrollable(Event);
pub const Queue = queue.Queue(Event, 256);
};