Qt Qml - Android - Adjust Listview Scroll Speed/velocity
[Qt Quick 2.0 (qml) - Android] I searched but I don't get how one can increase the velocity of the scrolling in a listview: ListView { width: 180; height: 200 Component {
Solution 1:
To improve speed of scrolling you can play with 2 ListView properties: cacheBuffer and maximumFlickVelocity.
maximumFlickVelocity directly impacts speed whereas cacheBuffer should be updated if you have speed issues due to slow dynamic loading of ListView elements.
Post a Comment for "Qt Qml - Android - Adjust Listview Scroll Speed/velocity"