In my application hybridthere is the ability to drag the screen to refresh the list. In Androidthis works fine, but iOSwhen I drag it, it is sometimes confused with the page scrolling so that it had the effect of the overflow / rebound.
There ionicis an attribute in there that you can use to disable this, but it does not work:
<ion-content id="questions" has-bouncing="false">
config.xml already has the following lines of code:
<preference name="webviewbounce" value="false"/>
<preference name="UIWebViewBounce" value="false"/>
<preference name="DisallowOverscroll" value="true"/>
source
share