Added ScrollView Component in React Native Android, and when you scroll down or up all the way, it show an overscroll effect. How do you remove this?
As of React Native 0.42, an overScrollMode prop is available to set the overscroll mode for each ScrollView:
https://facebook.github.io/react-native/docs/scrollview.html#overscrollmode
Until this option is added, I have to do it for the whole app using styles.xml:
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="android:overScrollMode">never</item>
</style>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With