1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:08:12 +00:00
serenity/Userland/Demos/WidgetGallery/DemoWizardPage1.gml
Idan Horowitz c8ab45e79f Userland: Run gml-format
This brings the existing GML files up to spec with the new requirements
2022-02-13 02:36:35 +02:00

33 lines
615 B
Text

@GUI::Widget {
layout: @GUI::VerticalBoxLayout {
margins: [20]
}
@GUI::Label {
text: "Please select an installation directory."
text_alignment: "TopLeft"
fixed_height: 32
}
@GUI::Widget {
fixed_height: 25
layout: @GUI::HorizontalBoxLayout {}
@GUI::Label {
text: "Location: "
autosize: true
}
@GUI::TextBox {
name: "page_1_location_text_box"
}
@GUI::Button {
text: "Browse"
fixed_width: 75
}
}
// Spacer
@GUI::Widget {}
}