mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-29 13:24:48 +00:00
9 lines
214 B
Text
9 lines
214 B
Text
SuperSimple := Rectangle {
|
|
color: area.pressed ? green : blue;
|
|
property<color> c2: area.pressed ? 123 : 456;
|
|
// ^error{Cannot convert float32 to color}
|
|
|
|
area := TouchArea {
|
|
}
|
|
}
|
|
|