在 React Native 中,我有一个静态书籍数组,我将其映射并以堆叠的行输出,如下所示:
return books.map((book, i) => {
return(
<View style={styles.book} key={i}>
<Text style={styles.book}>{book.title}</Text>
</View>
);
});
我在每本书上也有一个底部边框styles.book
:
book: {
borderBottomWidth: 1,
borderBottomColor: '#000000'
}
我需要列表中的最后一本书没有底部边框,所以borderBottomWidth: 0
我认为我需要申请它?在 React Native 中,如何让列表中的最后一本书没有底部边框?(在普通的 css 中,我们会使用 last-child)