mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-15 03:16:44 +02:00
27 lines
634 B
Plaintext
27 lines
634 B
Plaintext
@Weather::View {
|
|
height: 400
|
|
width: 600
|
|
fill_with_background_color: true
|
|
layout: @GUI::VerticalBoxLayout {}
|
|
|
|
@GUI::Frame {
|
|
layout: @GUI::VerticalBoxLayout {}
|
|
|
|
@GUI::ToolbarContainer {
|
|
@GUI::TextBox {
|
|
name: "searchbox"
|
|
placeholder: "Search..."
|
|
fixed_width: 150
|
|
}
|
|
}
|
|
|
|
@GUI::ScrollableContainerWidget {
|
|
should_hide_unnecessary_scrollbars: true
|
|
content_widget: @GUI::Widget {
|
|
name: "content"
|
|
layout: @GUI::VerticalBoxLayout {}
|
|
}
|
|
}
|
|
}
|
|
}
|