How to disable bouncing rubber band effect in angular for ios devices? #6940
Unanswered
saqibraza0902
asked this question in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I am using angular 16, ionic 7 and capacitor 5, I had tried different solutions but none of them working.
<ion-content forceOverscroll="false"> <ion-router-outlet></ion-router-outlet> </ion-content>
@media (-webkit-min-device-pixel-ratio: 2) { ion-content { overscroll-behavior: none; } } ion-content { -webkit-overflow-scrolling: auto !important; }
These are the solutions that i tried but not working
Beta Was this translation helpful? Give feedback.
All reactions