Add new home-automation demo (#6654)

This commit is contained in:
Nigel Breslaw 2024-10-25 15:55:03 +02:00 committed by GitHub
parent 04edafe121
commit e0557536a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
104 changed files with 4117 additions and 0 deletions

View file

@ -0,0 +1,12 @@
// Copyright © SixtyFPS GmbH <info@slint.dev>
// SPDX-License-Identifier: MIT
import { MainScreen } from "components/mainView/mainScreen.slint";
export component AppWindow inherits Window {
preferred-width: 1920px;
preferred-height: 1080px;
min-width: 1000px;
min-height: 600px;
MainScreen { }
}