mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-29 05:14:48 +00:00
24 lines
348 B
Text
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";
|
|
}
|
|
}
|
|
|