React Native Android: how to remove the scroll effect of ScrollView

The ScrollView component has been added to React Native Android, and when you scroll down or up, it shows the scroll effect. How to remove this?

+6
source share
2 answers

Until this option is added, I have to do this for the entire application using styles.xml:

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> <!-- Customize your theme here. --> <item name="android:overScrollMode">never</item> </style> 
+6
source

As with React Native 0.42, there is an overScrollMode prop option to set the super reset mode for each ScrollView:

https://facebook.imtqy.com/react-native/docs/scrollview.html#overscrollmode

+5
source

All Articles