mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:02:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			453 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			453 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| @GUI::Frame {
 | |
|     layout: @GUI::HorizontalBoxLayout {
 | |
|         spacing: 4
 | |
|     }
 | |
|     preferred_height: "fit"
 | |
| 
 | |
|     @GUI::Label {
 | |
|         name: "name"
 | |
|         text: "Some path"
 | |
|         text_alignment: "CenterLeft"
 | |
|         fixed_width: 200
 | |
|     }
 | |
| 
 | |
|     @GUI::TextBox {
 | |
|         name: "path_input"
 | |
|     }
 | |
| 
 | |
|     @GUI::Button {
 | |
|         name: "path_picker_button"
 | |
|         fixed_width: 22
 | |
|         icon: "/res/icons/16x16/open.png"
 | |
|         tooltip: "Choose..."
 | |
|     }
 | |
| }
 | 
