slint/docs/tutorial/cpp/src/memory.slint
2023-06-15 11:21:16 +02:00

12 lines
265 B
Text

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