Step size feels too big when using ListView
-
I am not able to replicate a proper scroll behavior for a ListView as its e.g. known in browsers when using a Mousepad. When scrolling a tiny bit on the mousepad, there is a pretty big jump. It feels like the stepsize is way too big as shown in this video: https://streamable.com/diwzyo when just minimally moving on the mousepad.
Is there an option to reduce that step size?
-
I am not able to replicate a proper scroll behavior for a ListView as its e.g. known in browsers when using a Mousepad. When scrolling a tiny bit on the mousepad, there is a pretty big jump. It feels like the stepsize is way too big as shown in this video: https://streamable.com/diwzyo when just minimally moving on the mousepad.
Is there an option to reduce that step size?
Read the docs https://doc.qt.io/qt-6/qml-qtquick-listview.html
ListView inherits Flickable.
try
flickDeceleration: 100000https://doc.qt.io/qt-6/qml-qtquick-flickable.html#flickDeceleration-prop
-
Read the docs https://doc.qt.io/qt-6/qml-qtquick-listview.html
ListView inherits Flickable.
try
flickDeceleration: 100000https://doc.qt.io/qt-6/qml-qtquick-flickable.html#flickDeceleration-prop
@Markkyboy I have tried finding a good balance between maximumFlickVelocity and the flickDeceleration, but It doesnt seem like archiving the scroll behavior of the browser on both the mousepad and scroll is possible by just modifying these two variables