This is a React Native Question.
What I want to achieve is to prevent triggering the scroll event if user is dragging a particular part of a scrollView.
Minimal example:
<View style={{ width: '100%', flex: 1 }}>
<ScrollView>
<View style={{ width: '100%', height: 1600, backgroundColor: 'red' }}>
<View style={{ width: '100%', height: 600, backgroundColor: 'blue' }}/>
</View>
</ScrollView
</View>
How can I disable the drag detection (scrolling parent scrollView) of the at the blue part?