mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-29 13:24:48 +00:00
17 lines
400 B
Text
17 lines
400 B
Text
SuperSimple := Rectangle {
|
|
TouchArea {
|
|
clicked => { root.x += 1px; }
|
|
}
|
|
TouchArea {
|
|
clicked => { x += 1px; }
|
|
}
|
|
TouchArea {
|
|
clicked => { 12 += 1; }
|
|
// ^error{Self assignement need to be done on a property}
|
|
}
|
|
TouchArea {
|
|
clicked => { x += "string"; }
|
|
// ^error{Cannot convert string to length}
|
|
}
|
|
}
|
|
|