问题:ListView无法拖拽滑动
详细过程:
根节点使用ListView后,正常拖拽滑动
render() {
return (
<ListView ... >
</ListView>
)
}
非根节点使用ListView后,无法拖拽滑动
render() {
return (
<View>
<Text>Just sth...</Text>
<ListView ... >
</ListView>
</View>
)
}
解决办法:
所有的ListView及其之上的所有所有父容器都要设置flex: 1
render() {
return (
<View style={{flex:1}}>
<Text>Just sth...</Text>
<ListView ... >
</ListView>
</View>
)
}