erksch / react-native-wheely

An all JavaScript wheel picker for react-native without any native code.
413 stars 59 forks source link

bugfix: use ScrollView as parent (Android) #56

Open aliunco opened 1 year ago

aliunco commented 1 year ago

It's forbidden (not recommended) from react-native platform to use the FlatList inside another ScrollView component, but if it's necessary we can do it using a property named nestedScrollEnabled, the default value for this property is true in iOS platform, but you have to turn it on in Android if it's necessary. please check the link below for more information.

https://github.com/facebook/react-native/issues/21436