How to disable this action in Page (iOs)?

This happens when pulling a page. I need to disable this on iOS

image

Add this to your config.xml if it isn’t already around :slight_smile:

<preference name="DisallowOverscroll" value="true" /> <preference name="webviewbounce" value="false" /> <preference name="UIWebViewBounce" value="false" />

It tells the webview to stop bouncing around. Add this to your ion-content:

<ion-content no-bounce>

I added <ion-content no-bounce>, but the problem persists.

Okay, it should work. As far as I can see it’s an active open tracked issue on the repo, which you can track over here:

For the time being you have to wait I’m afraid.

Thank’s. I will wait for a solution