10-17-2012 08:16 PM
Hey,
I'm having trouble scrolling the items in my scrollview, this are the properties:
layout: FlowListLayout {
orientation: LayoutOrientation.LeftToRight
}
Characteristics:
When I scroll with my finger with normal speed, the flow will go till 2 more items not just the next one. One solution is to scroll very slowly just to go to the next one. But this may become a bit anoying for the user.
I would only like to reduce the speed of the flow. Is there any property?
I tried this:
onCreationCompleted: {
setScrollStops([[0, 1], [1, 1]]);
}
But the truth is i dont really understand the parameters passed to the function. If this is a asolution can anyone explain how it works?
Solved! Go to Solution.
12-05-2012 01:05 PM
still no solution??
12-28-2012 12:27 AM
Hi,
Try Flickmode using StackListLayout
https://developer.blackberry.com/cascades/referenc
https://developer.blackberry.com/cascades/referenc
set flickMode: FlickMode.SingleItem, it works great ![]()
12-28-2012 02:23 AM
agree with manu_dazlia; you should set
snapMode: SnapMode.LeadingEdge flickMode: FlickMode.SingleItem
on your ListView
12-28-2012 02:15 PM
Thank you very much! That perfectly solves it !!