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