mirror of
				https://github.com/slint-ui/slint.git
				synced 2025-10-30 19:47:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			365 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			365 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| // Copyright © SixtyFPS GmbH <info@slint.dev>
 | |
| // SPDX-License-Identifier: MIT
 | |
| import { MainScreen } from "components/mainView/mainScreen.slint";
 | |
| import { Api } from "api.slint";
 | |
| 
 | |
| export { Api }
 | |
| 
 | |
| export component AppWindow inherits Window {
 | |
|     min-width: 960px;
 | |
|     min-height: 540px;
 | |
|     preferred-width: 960px;
 | |
|     preferred-height: 540px;
 | |
| 
 | |
|     MainScreen { }
 | |
| }
 | 
