mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-02 06:41:14 +00:00
12 lines
319 B
Text
12 lines
319 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 { }
|
|
}
|