mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-28 21:04:47 +00:00
12 lines
265 B
Text
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
|