mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-30 22:01:13 +00:00
14 lines
389 B
Text
14 lines
389 B
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial
|
|
|
|
export global MyGlobal {
|
|
in-out property <string> global-prop: "This is global";
|
|
}
|
|
|
|
export component App {
|
|
in-out property <string> hello: "World";
|
|
callback say-hello(string);
|
|
Rectangle {
|
|
color: red;
|
|
}
|
|
}
|