【发布时间】:2021-01-23 08:20:36
【问题描述】:
作为下划线,我已将borderBottom 添加到环绕我的文本元素的视图中。但是,底部比我想要的要低一点。有什么办法可以缩短距离吗?
<View
style={[
styles.textContainer,
selected === index ? styles.selectedTab : null,
]}>
<Text style={styles.tabText}>{item.text}</Text>
</View>
selectedTab: {
borderBottomWidth: 3,
borderBottomColor: 'red',
}
代码沙盒: 单击其中一个文本项时,您会看到下划线。 https://snack.expo.io/@nhammad/shallow-watermelon
【问题讨论】:
-
可以降低tabText样式的paddingBottom
标签: javascript css reactjs typescript react-native