// Copyright © SixtyFPS GmbH // SPDX-License-Identifier: MIT // ANCHOR: main_window // ui/appwindow.slint export component MainWindow inherits Window { Text { text: "hello world"; color: green; } } // ANCHOR_END: main_window