React Native: How to disable scrolling in ListView?
Sometimes scrolling is disabled only by applying both scrollEnabled
and nestedScrollEnabled
:
<ScrollView
scrollEnabled={false}
nestedScrollEnabled={false}
>
{children}
</ScrollView>
i think it should be
scrollEnabled={false}
http://facebook.github.io/react-native/docs/scrollview.html#props