slint/examples/cpptest/hello.60
2020-05-11 11:19:57 +02:00

24 lines
348 B
Text

SuperSimple = Rectangle {
color: white;
Rectangle {
width: 100;
height: 100;
color: blue;
}
Rectangle {
x: 100;
y: 100;
width: (100);
height: {100}
color: green;
}
Image {
x: 200;
y: 200;
source: "../graphicstest/logo.png";
}
}