mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 19:29:16 +00:00
30 lines
517 B
Plaintext
30 lines
517 B
Plaintext
@GUI::Frame {
|
|
layout: @GUI::VerticalBoxLayout {}
|
|
|
|
@GUI::Widget {
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [8, 100, 8, 8]
|
|
}
|
|
|
|
@GUI::Button {
|
|
text: "Button"
|
|
}
|
|
|
|
@GUI::CheckBox {
|
|
text: "Check box"
|
|
}
|
|
|
|
@GUI::RadioButton {
|
|
text: "Radio button"
|
|
}
|
|
|
|
@GUI::TextEditor {
|
|
text: "Text editor\nwith multiple\nlines."
|
|
}
|
|
}
|
|
|
|
@GUI::Statusbar {
|
|
text: "Status bar"
|
|
}
|
|
}
|