I've utilized the property in the config.xml
file to prevent bouncing in the webview (iOS):
<preference name="DisallowOverscroll" value="true" />
It's working as intended. However, I'm wondering if there's a way to disable bouncing for just my header and footer. These elements are fixed at the top and bottom of my app, so I don't want them to bounce. Yet, I'd like to maintain the bounce effect for the inner container for a more native feel, especially with lists.
- Is there a method to achieve this? I want to prevent bouncing for my header and footer, but not for the inner container.
- Additionally, is there a way to do this that will work across both iOS and Android platforms?