mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-29 21:34:50 +00:00
23 lines
347 B
Text
23 lines
347 B
Text
|
|
|
|
SuperSimple := Rectangle {
|
|
|
|
animate x {
|
|
duration: 1000ms;
|
|
}
|
|
|
|
animate x {
|
|
// ^error{Duplicated animation}
|
|
duration: 1000ms;
|
|
}
|
|
|
|
animate y {
|
|
nonexistent: 42;
|
|
// ^error{Unknown property nonexistent}
|
|
}
|
|
|
|
animate text {
|
|
// ^error{'text' is not an animatable property}
|
|
}
|
|
}
|
|
|