I have a ListView nested inside a View.
<View style={styles.container} {...this._panGesture.panHandlers}>
<ListView
ref="list"
dataSource={this.state.dataSource}
renderRow={this._renderRow}
style={styles.list}
/>
</View>
The outer View has a PanResponder. The ListView is not blocking the parent from taking the gesture responder but is releasing control to the parent View on move which causes the ListView to not be scrollable.
I have a ListView nested inside a View.
The outer View has a PanResponder. The ListView is not blocking the parent from taking the gesture responder but is releasing control to the parent View on move which causes the ListView to not be scrollable.