1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-22 14:15:08 +00:00
serenity/Userland/Libraries/LibGUI/EmojiInputDialog.gml

21 lines
446 B
Text

@GUI::Frame {
shape: "Container"
shadow: "Raised"
fill_with_background_color: true
layout: @GUI::VerticalBoxLayout {
margins: [4]
}
@GUI::TextBox {
name: "search_box"
fixed_height: 22
}
@GUI::ScrollableContainerWidget {
name: "scrollable_container"
content_widget: @GUI::Widget {
name: "emojis"
layout: @GUI::VerticalBoxLayout {}
}
}
}