QML ListView , Elements with NumberAnimations
-
wrote on 25 Apr 2015, 19:12 last edited by emminna
I have listview of elements which have numberAnimation(the element expands downward), when I expand an element the element below the expended one does not slide down. Any suggestions??
-
wrote on 26 Apr 2015, 12:33 last edited by flashmozzg
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)
2/2