This commit is contained in:
Able 2024-11-08 10:29:06 -06:00
parent d2b5f09511
commit 818bcb458f
4 changed files with 14 additions and 1 deletions

View file

@ -0,0 +1,4 @@
(horizontal
spacing : 10
(label "hi")
(label "goodbye"))

View file

@ -0,0 +1,5 @@
Image := struct {
magic: uint,
is_dirty: bool,
surface: Surface,
}

View file

@ -1,4 +1,7 @@
NoWidget := 0
VerticalWidgetType := 1
HorizontalWidgetType := 2
LabelWidgetType := 3
ImageWidgetType := 4

View file

@ -11,6 +11,7 @@ render := @use("../../../../libraries/render/src/lib.hb");
widget_types := @use("widget_types.hb")
label := @use("label.hb")
image := @use("image.hb")
Size := struct {
min_width: int,