I have this scenario where a FlatList has a ScrollView as parent:
<ScrollView>
<Header />
<FlatList />
</ScrollView>
I want to disable the FlatList scrolling and only enabled it when the ScrollView reaches a certain Y position. All in a single gesture.
Is it possible?