Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
How we will show animation ( change the colour ) of indeterminate progressbar in qml ?
-
This post is deleted!
-
You are not starting the animation anywhere. Either start it by calling
start()
, or use the declarative approach. Here's an example for the former:ProgressBar{ id : p1 indeterminate: true onValueChanged: anim.start() ColorAnimation { id: anim from: "white" to: "black" duration: 200 } }