Currently working on a mobile app that combines elements of both iOS and Android, using ionic-3
.
Encountering an issue where the scrolling behavior differs between Android and iOS. On Android, scrolling stops when reaching the bottom of the page. However, on iOS, the scrolling "bounces" beyond the end of the page, revealing a white background which clashes with my dark grey theme.
Attempted to address this by adding specific lines to the config.xml file, but unfortunately, they had no effect:
<preference name="webviewbounce" value="false" />
<preference name="UIWebViewBounce" value="false" />
<preference name="DisallowOverscroll" value="true" />
Seeking advice on alternative solutions to eliminate the over-scroll bounce effect on iOS devices. Any suggestions would be greatly appreciated!