I’m developing an Hybrid
app for both iOS and Android using ionic-3
.
On Android, when the user reaches the bottom of the page, the scrolling stops. On iOS, when the user reaches the bottom of the page it “bounces” past the end of the page and shows a white background. I don’t want it to do this - the background of my page is dark grey, and this overscroll looks terrible.
I’ve already added the following three lines to the config.xml file:
<preference name="webviewbounce" value="false" />
<preference name="UIWebViewBounce" value="false" />
<preference name="DisallowOverscroll" value="true" />
But they don’t have any effect.
What else can I do to prevent this over-scroll, bounce effect?