Fullscreen Scrolling (iOS)

I made an iOS application using PhoneGap Buildone that works great. I'm having some kind of problem while scrolling the page. When I scroll the bottom or top the whole screen moves. Is there a way to prevent this, as I know this is a function iOS. Which is very nice, but in the case of my application, I do not want this. So help me out.

enter image description here

+4
source share
1 answer

Use this in your configuration file:

<preference name="DisallowOverscroll" value="true" />

<preference name="webviewbounce" value="false" />
+2
source

All Articles