add(widget/Spacer): empty widget implementation
All checks were successful
Zig Project Action / Lint, Spell-check and test zig project (push) Successful in 32s

This commit is contained in:
2024-11-10 00:13:47 +01:00
parent 04b6df691e
commit b32556720e
3 changed files with 37 additions and 0 deletions

View File

@@ -74,5 +74,6 @@ pub fn Widget(comptime Event: type) type {
// TODO: import and export of `Widget` implementations (with corresponding initialization using `Event`)
pub const RawText = @import("widget/RawText.zig").Widget(Event);
pub const Spacer = @import("widget/Spacer.zig").Widget(Event);
};
}