mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-27 14:22:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			663 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			663 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| @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 {}
 | |
|         }
 | |
|     }
 | |
| }
 | 
