gpt4 book ai didi

react-native - 如何在 react-native 中执行水平 ListView 或 FlatList

转载 作者:行者123 更新时间:2023-12-03 11:33:52 25 4
gpt4 key购买 nike

我正在寻找一种在 React-native 中制作水平 ListView 或 FlatList 的方法。
如下图所示:
enter image description here
我试图用 Flex 管理它,但它让我感到奇怪的结果,而且总是使用垂直的 ListView
如果你有任何想法,请告诉我。
问候,

最佳答案

答案是添加水平属性设置为true .

是的,文档中没有描述:https://facebook.github.io/react-native/docs/listview.html

很明显,ListView 是 ScrollView 的 child ,所以他得到了 Horizo​​ntal Bool。

<ListView
horizontal={true}
style={{flex:1}}
dataSource={this.state.dataSource}
renderRow={(data) => <Row {...data} />}
/>

<FlatList
horizontal={true}
data={this.props.data}
extraData={this.state}
keyExtractor={this._keyExtractor}
renderItem={this._renderItem}
/>

再见

关于react-native - 如何在 react-native 中执行水平 ListView 或 FlatList,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42245636/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com