Stepping and flickering of images while moving of listview elements in qml
Unsolved
QML and Qt Quick
-
Hi,
in my listview there are 25 to 30 elements are there, while scrolling of images stepping and flickering of images takes place in qml. how to avoid the stepping and flickering of images for a listview in qml...., any sample code very helpful for me........
-
hi@J.Hilk
thank u for giving valuable suggestion, i am using the asynchronous property to true inside the image object,still there is a flickering and stepping of images while scrolling listview of images is taking place....,how to resolve that issue......
-
I found a solution for similar problem
looks like the step happens because of 'interactive' in ListView
So, do:interactive: false
and use a custom scroll with MouseArea
using onWheel