There're some good example of implement custom pager view using ScrollView like:
https://github.com/MarcBruins/BWWalkthrough-Xamarin-iOS
https://github.com/ariok/BWWalkthrough
Above sample work well, but if I have a UINavigationController as root contorller, and push above pager view as a child; when scroll to switch page(drag and move both horizontally and vertically before drop), the whole pager view also moves vertically, this is not as expected.
does anyone has idea how to disable this vertically move(or bounce) ?
Answers
I've wrap page view inside container controler, and had code above, I've now fix issue by comment out two lines above.
I've found if I change pageview's height, also got vertical scroll problem, but this can be avoid by other fix.