mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-01 08:07:23 +00:00
12 lines
305 B
Text
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
|