david72
david72

Reputation: 7307

React Native Android: how to remove "overscroll effect" of ScrollView

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

Answers (2)

JustWonder
JustWonder

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

david72
david72

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

Related Questions