feat(element/progress): Progress bar implementation as an Element
Some checks failed
Zig Project Action / Lint, Spell-check and test zig project (push) Failing after 2m42s

This commit is contained in:
2025-07-05 18:29:49 +02:00
parent f775a6ab2d
commit 9f29ac6a77
4 changed files with 316 additions and 1 deletions

View File

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