Proxy Flickable moving to parent ListView on bound reach
-
Hi, all.
In my project I have ListView with Flickable as delegate. Flickable contains Image. The goal I'm trying to achieve is to scroll to the next/previous ListView item when Image inside Flickable reaches to the left or right bound. So, the moving of Image should seamlessly turn into scrolling of ListView.
Any suggestions how to implement such behaviour.
Thanks in advance.
-
Listviews by default are flickable, so check that:
-
the Snap Mode Property of the ListView is set as -- snapMode: ListView.SnapOneItem (this should do it).
-
Set your orientation on the Listview.
-
You might wish to experiment with onFlickStarted and onFlickEnded.
-
-