mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 16:28:11 +00:00
22 lines
482 B
Text
22 lines
482 B
Text
@GUI::Frame {
|
|
shape: "Container"
|
|
shadow: "Raised"
|
|
fill_with_background_color: true
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [4]
|
|
}
|
|
|
|
@GUI::TextBox {
|
|
name: "search_box"
|
|
placeholder: "Search emoji"
|
|
fixed_height: 22
|
|
}
|
|
|
|
@GUI::ScrollableContainerWidget {
|
|
name: "scrollable_container"
|
|
content_widget: @GUI::Widget {
|
|
name: "emojis"
|
|
layout: @GUI::VerticalBoxLayout {}
|
|
}
|
|
}
|
|
}
|