mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-29 13:24:48 +00:00
10 lines
169 B
Text
10 lines
169 B
Text
TestCase := Rectangle {
|
|
animate x {
|
|
duration: 1000ms;
|
|
}
|
|
animate y {
|
|
x: 0px;
|
|
// ^error{Unknown property x in PropertyAnimation}
|
|
}
|
|
}
|
|
|