EmojiInputDialog.gml 446 B

123456789101112131415161718192021
  1. @GUI::Frame {
  2. shape: "Container"
  3. shadow: "Raised"
  4. fill_with_background_color: true
  5. layout: @GUI::VerticalBoxLayout {
  6. margins: [4]
  7. }
  8. @GUI::TextBox {
  9. name: "search_box"
  10. fixed_height: 22
  11. }
  12. @GUI::ScrollableContainerWidget {
  13. name: "scrollable_container"
  14. content_widget: @GUI::Widget {
  15. name: "emojis"
  16. layout: @GUI::VerticalBoxLayout {}
  17. }
  18. }
  19. }