Suhas Gosavi
Suhas Gosavi

Reputation: 2170

Full screen scroll (IOS)

I have made an iOS application using PhoneGap Build, Which works fine. I am having some kind of problem while scrolling a page. When I scroll from bottom or from Top whole screen moves. Is there any way to prevent this,as I know this is iOS feature. Which is very nice but in case of my application I do not want this. So help me out.

enter image description here

Upvotes: 4

Views: 1470

Answers (1)

Milind Anantwar
Milind Anantwar

Reputation: 82241

Use this in you config file:

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

<preference name="webviewbounce" value="false" />

Upvotes: 2

Related Questions