[SOLVED]Flickable Control question
-
If your are looking like homescreen kind of behavior (like a flick would get one homescreen at a time) try these properties in your ListView (assuming the fickable view your are using is a listview)
@
highlightRangeMode: ListView.StrictlyEnforceRange
highlightFollowsCurrentItem: true;
snapMode: ListView.SnapOneItem@
-
I agree, I have used this method somewhere in an application with good results. Not rememebr now where ... But I need to reuse this in a application I am working on so I can provide and example further if needed.