Reputation: 7307
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?
Upvotes: 14
Views: 15650
Reputation: 2443
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
Upvotes: 27
Reputation: 7307
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>
Upvotes: 12