Reputation: 1082
I have the following issue, FlatList is rendered inside ScrollView, and everything seems to fine except that while FlatList scrolling the buttons in ScrollView are not responding.
Structure is something like this:
ScrollView - vertical Button ListView - horizontal ScrollView
Upvotes: 8
Views: 1982
Reputation: 1145
use nestedscrollenabled prop for the children
<FlatList nestedScrollEnabled />
Upvotes: 0