blob: 3f63c09b671d21a653fd796184434c661c4a8cbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
@GUI::Frame {
shape: "Window"
fill_with_background_color: true
layout: @GUI::VerticalBoxLayout {
margins: [4]
}
@GUI::TextBox {
name: "search_box"
placeholder: "Search emoji"
fixed_height: 22
}
@GUI::ToolbarContainer {
@GUI::Toolbar {
name: "toolbar"
@GUI::Label {
text: "Category: "
autosize: true
}
}
}
@GUI::ScrollableContainerWidget {
name: "scrollable_container"
content_widget: @GUI::Widget {
name: "emojis"
layout: @GUI::VerticalBoxLayout {}
}
}
}
|