fix(container): growth options to dynamically size Containers
All checks were successful
Zig Project Action / Lint, Spell-check and test zig project (push) Successful in 29s

This commit is contained in:
2025-03-06 22:31:00 +01:00
parent 5457e91b37
commit 54c7e19939
2 changed files with 26 additions and 14 deletions

View File

@@ -73,8 +73,8 @@ pub fn main() !void {
} else {
try column.append(try App.Container.init(allocator, .{
.size = .{
.dim = .{ .y = 5 },
// .grow = .horizontal,
.dim = .{ .y = 4 },
.grow = .horizontal,
},
}, .{}));
}