1// Copyright © SixtyFPS GmbH <info@slint.dev>
2// SPDX-License-Identifier: MIT
3
4// ANCHOR: main_window
5// ui/appwindow.slint
6export component MainWindow inherits Window {
7 Text {
8 text: "hello world";
9 color: green;
10 }
11}
12// ANCHOR_END: main_window
13