Details
-
Bug
-
Resolution: Done
-
Not Evaluated
-
None
-
5.1.0
-
5a9b4219469890777044ce315b1410ff5adccf5d
Description
The following code does not work properly. The value is not updated with the animation. The progress bar is not animated.
ProgressBar {
id: pb
value: progress
property real progress: 0
SequentialAnimation on progress {
loops: Animation.Infinite
running: true
NumberAnimation {
from: 0
to: 1
duration: 3000
}
NumberAnimation {
from: 1
to: 0
duration: 3000
}
}
onValueChanged: print(value)
}