I have a problem with scroll in iOS 12.2 & 12.4
Scroll works but doesnt slide. It looks static. On iOS 13 works fine:
Expected behaviour:
[
i try this: https://github.com/ionic-team/cordova-plugin-ionic-webview/issues/326 and this https://github.com/ionic-team/cordova-plugin-ionic-webview/issues/326#issuecomment-483732402 without results:
I dont use ionic tags in my app. Only alerts and dropdowns. I try to put pointer-events: auto in my scroll container but it doesnt work.
This is my container css:
.flex-content {
flex: 1;
display: flex;
flex-direction: column;
overflow-y: scroll;
overflow-x: hidden;
height: 100%;
transition-duration: 500ms;
pointer-events: auto;
}
Any idea?
I have the same problem on iOS 12.2 & 12.4, any solution?
I tried some solutions like:
ion-app.platform-ios12 ion-content { pointer-events: auto; /*fix scroll lock on ios12.2*/ }
But not working.
Also the links into my app have stopped working.
On IOS 13.x everything is OK.
Any idea?
ion-app.platform-ios12 ion-content {
pointer-events: auto; /fix scroll lock on ios12.2/
}
add this in variables.scss. it worked for me
I don't use ion-app and ion-content tags on my project
Add this line to your scroll container in css:
-webkit-overflow-scrolling: touch;
Testeado y funcionando :)
Most helpful comment
Add this line to your scroll container in css:
-webkit-overflow-scrolling: touch;