ladybird/Userland/Demos/WidgetGallery/DemoWizardPage2.gml
FrHun 8081a8a5de LibGUI: Add layout spacer support to GML
This is a bit of a hack, but it is an easy way to finally get spacers
into GML.
This will translate well if spacers are later to become child objects of
the continer widget.
2022-06-10 21:26:06 +01:00

19 lines
318 B
Plaintext

@GUI::Widget {
layout: @GUI::VerticalBoxLayout {
margins: [20]
}
@GUI::Label {
text: "Please wait..."
text_alignment: "TopLeft"
fixed_height: 32
}
@GUI::Progressbar {
name: "page_2_progressbar"
fixed_height: 28
}
@GUI::Layout::Spacer {}
}