美文网首页
【ReactNative错误集锦】ListView无法拖拽滑动

【ReactNative错误集锦】ListView无法拖拽滑动

作者: 滕的世界 | 来源:发表于2016-09-24 15:16 被阅读75次

问题: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>
    )
}

相关文章

网友评论

      本文标题:【ReactNative错误集锦】ListView无法拖拽滑动

      本文链接:https://www.haomeiwen.com/subject/wiuxyttx.html