渲染listView到达屏幕宽度结束时的下一行

时间:2017-12-12 12:42:56

标签: listview react-native

我正在使用listView作为我的react-native应用程序。现在,ListView呈现第一行上的所有项目,我应该水平滚动屏幕以在第二项之后查看更多内容。但是,我想为每一行只渲染两个项目。那么如何更改ListView,以便每行只渲染两个项目?

这是我的ListView实施代码。

<ListView contentContainerStyle={{flexDirection: 'row', flexWrap: 'wrap', left: 5}}
                                     dataSource={this.state.dataSource}
                                     enableEmptySections={true}
                                     horizontal
                                     renderRow={(rowData)=>this.renderRow(rowData)}>
</ListView>

以下是我ListView目前呈现的方式。

enter image description here

0 个答案:

没有答案