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

@@ -10,6 +10,7 @@ pub fn build(b: *std.Build) void {
alignment,
button,
input,
progress,
scrollable,
// layouts:
vertical,
@@ -60,6 +61,7 @@ pub fn build(b: *std.Build) void {
.alignment => "examples/elements/alignment.zig",
.button => "examples/elements/button.zig",
.input => "examples/elements/input.zig",
.progress => "examples/elements/progress.zig",
.scrollable => "examples/elements/scrollable.zig",
// layouts:
.vertical => "examples/layouts/vertical.zig",