QML ListView , Elements with NumberAnimations
-
Where do you have numberAnimation? Does it change it's position and you want to animate it or they overlap? If the former when something like
displaced: Transition { NumberAnimation { property: "y"; duration: 100 } }
for your view should be enough (of course assuming that only y property changes and duration of animation should be 0.1 s)