Cordova-plugin-ionic-webview: Scroll in iOS 12.2/12.4 cant's slide

Created on 28 Dec 2019  路  7Comments  路  Source: ionic-team/cordova-plugin-ionic-webview

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:
[Image from Gyazo

Problem:
Image from Gyazo

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;
}

Most helpful comment

Add this line to your scroll container in css:

-webkit-overflow-scrolling: touch;

All 7 comments

Was this page helpful?
0 / 5 - 0 ratings

Related issues

Git-Santhosh picture Git-Santhosh  路  5Comments

paulstelzer picture paulstelzer  路  8Comments

mowaiskalam picture mowaiskalam  路  6Comments

jamesdixon picture jamesdixon  路  4Comments

begbeder picture begbeder  路  5Comments