slint/sixtyfps_compiler/tests/basic/condition_operator.60
Simon Hausmann 63f81e1991 Add basic support for conditional expressions
Todo are automated tests and cleaning up the C++ implementation.
2020-06-10 16:04:15 +02:00

7 lines
101 B
Text

SuperSimple := Rectangle {
color: area.pressed ? green : blue;
area := TouchArea {
}
}