mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 16:15:10 +00:00
17 lines
297 B
Text
17 lines
297 B
Text
@GUI::Frame {
|
|
layout: @GUI::HorizontalBoxLayout {
|
|
spacing: 4
|
|
}
|
|
preferred_height: "fit"
|
|
|
|
@GUI::Label {
|
|
name: "name"
|
|
text: "Some metric"
|
|
text_alignment: "CenterLeft"
|
|
fixed_width: 200
|
|
}
|
|
|
|
@GUI::SpinBox {
|
|
name: "spin_box"
|
|
}
|
|
}
|