I have a screen with many horizontal FlatLists inside a ScrollView, the structure is likes this:
<ScrollView><View><FlatList horizontal={true} .../></View><View><FlatList horizontal={true} .../></View><View><FlatList horizontal={true} .../></View></ScrollView>
Horizontal scrolling on each FlatList sometimes work, but most of the times happens a swipe to the next screen:
Am using react native 0.61.2, react-navigation 4.0.10. Previously on react native 0.60.x works good. It only happens on android.
I already tried:
- put
nestedScrollEnabled={true}
on<ScrollView>
- put ScrollView inside a
<View>
withflex:1
- put
nestedScrollEnabled={true}
on<ScrollView>
and on eachFlatList
but it's not working, What more else can I do? Thanks in advance