【发布时间】:2021-01-27 17:47:54
【问题描述】:
我想在 React native 中为下拉菜单的最后一个元素设置样式。
我正在使用一个名为 React 本机下拉选择器的库。
它有一个名为 itemStyle 的道具,您可以在其中传递项目的样式。
item: {
height: 35,
justifyContent: 'flex-start',
paddingLeft: 5,
borderBottomWidth: 1,
borderBottomColor: '#000',
},
The elements style in dropdown
所以我想将最后一个元素的 borderBottomWidth 从 1px 更改为 0。
不知道有没有可能。
对不起,如果我的英语不好。
【问题讨论】:
标签: css reactjs react-native styled-components