slint/tests/cases/grid_layout.60
Olivier Goffart 4b20bf97ef Add px unit in many places
(This was done automatically with the updater)
2020-07-14 17:14:59 +02:00

27 lines
428 B
Text

TestCase := Rectangle {
width: 300px;
height: 300px;
GridLayout {
x: 100px;
y: 100px;
Row {
Rectangle {
color: red;
}
}
Row {
Rectangle {
color: green;
}
}
}
Text {
text: "This test should be above the two rectangles below";
color: black;
}
}