Flatlist中每个旁边的文本组件都是原生的

时间:2018-06-01 06:34:35

标签: react-native react-native-flatlist

我有一个数组,数组中的每个项目都有一个文本和按钮URL我希望将这些文本彼此相邻 使用flatlist这是我的代码

<FlatList 
       data={data.ayahs}
       keyExtractor={(item, index) => index.toString()}
       numColumns= '10'
       columnWrapperStyle={{ flexWrap: 'wrap', flex: 1}}
       renderItem={this._renderItem.bind(this)}
       contentContainerStyle= {{justifyContent: 'center'}}
 />

实际行为

output

预期行为所有文本彼此相邻

enter image description here

平板表可以做到这一点吗?

0 个答案:

没有答案