slint/sixtyfps_compiler/tests/basic/path_layout.60
2020-07-14 17:45:03 +02:00

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;
}
}
}