mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-29 13:24:48 +00:00
20 lines
No EOL
301 B
Text
20 lines
No EOL
301 B
Text
X := Rectangle {
|
|
|
|
PathLayout {
|
|
for item[index] in [
|
|
{name: "First Item"},
|
|
{name: "Second Item"}
|
|
] : Text {
|
|
text: item.name;
|
|
}
|
|
|
|
x: 50px;
|
|
y: 50px;
|
|
|
|
LineTo {
|
|
x: 300;
|
|
y: 300;
|
|
}
|
|
}
|
|
|
|
} |