Grissom
Grissom

Reputation: 1082

React Native FlatList inside ScrollView issue

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

Answers (1)

Deepak Singh
Deepak Singh

Reputation: 1145

use nestedscrollenabled prop for the children

<FlatList nestedScrollEnabled />

Upvotes: 0

Related Questions