slint/docs/tutorial/cpp/src/memory.slint
2022-02-02 10:05:45 +01:00

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