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 56s

This commit is contained in:
2025-07-16 21:39:45 +02:00
parent 088e1a9246
commit 52fdf5c047
3 changed files with 155 additions and 7 deletions

View File

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