mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-31 15:47:26 +00:00
12 lines
283 B
Text
12 lines
283 B
Text
// Copyright © SixtyFPS GmbH <info@sixtyfps.io>
|
|
// SPDX-License-Identifier: (GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)
|
|
|
|
// ANCHOR: main_window
|
|
// memory.60
|
|
MainWindow := Window {
|
|
Text {
|
|
text: "hello world";
|
|
color: green;
|
|
}
|
|
}
|
|
// ANCHOR_END: main_window
|