mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-31 07:37:24 +00:00
15 lines
395 B
Text
15 lines
395 B
Text
// 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 {
|
|
door-component-loaded: false;
|
|
initial-door-state: open;
|
|
}
|
|
}
|