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?
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>
As with React Native 0.42, there is an overScrollMode prop option to set the super reset mode for each ScrollView:
overScrollMode
https://facebook.imtqy.com/react-native/docs/scrollview.html#overscrollmode