mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-29 13:24:48 +00:00
19 lines
No EOL
301 B
Text
19 lines
No EOL
301 B
Text
|
|
X := Rectangle {
|
|
|
|
lay := GridLayout {
|
|
property<string> foo: "hello";
|
|
Row {
|
|
Text { text: lay.foo; }
|
|
Text {}
|
|
}
|
|
Row {Text {}}
|
|
Text{
|
|
Row {}
|
|
// ^error{Row can only be within a GridLayout element}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
} |