gpt4 book ai didi

javascript - 如何在 React Native 中将数组中的元素设置为表格样式

转载 作者:行者123 更新时间:2023-12-02 23:29:20 24 4
gpt4 key购买 nike

如何为具有 4 列 6 行的表格的数组中的 24 个元素设置样式?

该数组有 24 个元素,如下所示:

const words = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x" ]

我将它们映射到渲染方法中:

<View>
{words.map((word, id) => (
<View key={id}><Text>{word} </Text></View>
))}
</View>

最佳答案

您可以使用一些简单的 Flex 属性:

const styles = StyleSheet.create({
table: {
flexWrap: 'wrap',
flexDirection: 'row'
},
cell: {
flexBasis: '25%',
flex: 1,
borderWidth: 1
}
});

然后:

<View style={styles.table}>
{words.map((word, id) => (
<View style={styles.cell} key={id}><Text>{word} </Text></View>
))}
</View>

https://snack.expo.io/@morkadosh/mad-salsa

关于javascript - 如何在 React Native 中将数组中的元素设置为表格样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56582168/

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