How do I disable top and bottom bounce in ion-content
? I've tried adding overflow-scroll and no such luck:
<ion-content [scrollY]="!disableScroll" overflow-scroll="false">
</ion-content>
How do I disable top and bottom bounce in ion-content
? I've tried adding overflow-scroll and no such luck:
<ion-content [scrollY]="!disableScroll" overflow-scroll="false">
</ion-content>
Use forceOverscroll for that
<ion-content forceOverscroll="false">
</ion-content>
Please add below line in config.xml :
<preference name="webviewbounce" value="false" />
<preference name="UIWebViewBounce" value="false" />
And run below command :
ionic cordova prepare ios
Re-run the app , i hope app will working fine.