mirror of
				https://github.com/slint-ui/slint.git
				synced 2025-10-29 19:17:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			468 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			468 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| // Copyright © SixtyFPS GmbH <info@slint.dev>
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| import {Button, AboutSlint} from "std-widgets.slint";
 | |
| 
 | |
| export component AppWindow inherits Window {
 | |
|     property <int> count;
 | |
| 
 | |
|     preferred-width: 600px;
 | |
|     preferred-height: 300px;
 | |
| 
 | |
|     VerticalLayout {
 | |
|         AboutSlint { }
 | |
| 
 | |
|         Button {
 | |
|             clicked => { count += 1; }
 | |
|             text: "Press me";
 | |
|         }
 | |
| 
 | |
|         Text { text: count; }
 | |
|         Rectangle {  }
 | |
|     }
 | |
| }
 | 
