最近項(xiàng)目遇到需要使用ScrollView 嵌套 FlatList的功能尤慰,當(dāng)flatList滾動(dòng)時(shí)关斜,ScrollView也在滾動(dòng)叽粹,最后在github上找到了解決辦法炭菌,防止忘記記錄一下T拘搿!
ScrollView 嵌套 FlatList滾動(dòng)娃兽,當(dāng)flatList滾動(dòng)時(shí),ScrollView禁止?jié)L動(dòng)
this.state = {
enableScrollViewScroll: true,
...
}
onEnableScroll = value => {
this.setState({
enableScrollViewScroll: value,
});
};
render() {
return(
<ScrollView
scrollEnabled={this.state.enableScrollViewScroll}
>
<FlatList
onTouchStart={() => {this.onEnableScroll(false);}}
onMomentumScrollEnd={() => {this.onEnableScroll(true);}}
...
/>
...
</ScrollView>
)
}