Empty space before/after ListView items
Solved
QML and Qt Quick
-
When using ListView is it possible to remove that empty space before/after items when you drag items at the beginning/ending?
I use an example from the documentation. -
Use the
boundsBehavior
property:ListView { boundsBehavior: Flickable.StopAtBounds ... }