Hi,
Is it possible to disable the bounce effect when scrolling to the top or bottom in Android Capacitor 4 apps?
I tried the solution here but it doesn’t seem to work with Capacitor 4 apps anymore:
Thank You!
Hi,
Is it possible to disable the bounce effect when scrolling to the top or bottom in Android Capacitor 4 apps?
I tried the solution here but it doesn’t seem to work with Capacitor 4 apps anymore:
Thank You!
According to the latest messages you got it working
The needed code is
WebView v = getBridge().getWebView();
v.setOverScrollMode(v.OVER_SCROLL_NEVER);
Can be put in MainActivity.java
or in a custom plugin.