slint/docs/tutorial/cpp/src/memory.slint
2023-02-09 16:59:25 +01:00

12 lines
305 B
Text

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