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