mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-02 06:41:14 +00:00
27 lines
428 B
Text
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;
|
|
}
|
|
}
|