React native 如何重叠文本和下划线?-自然反应

React native 如何重叠文本和下划线?-自然反应,react-native,React Native,我想要一个像照片中文本下划线一样的效果。 但不幸的是,我只能这么做。 0.001 克莱 如何使文本和下划线重叠?使用绝对定位,并根据需要对齐它们 <View style={{borderBottomWidth:5, flexDirection: 'row',borderBottomColor:'#F2DA00'}}> <Text style={{fontSize:25,fontWeight:'bold',marginBottom:-10}}>0.001&l

我想要一个像照片中文本下划线一样的效果。

但不幸的是,我只能这么做。


0.001
克莱

如何使文本和下划线重叠?

使用绝对定位,并根据需要对齐它们
<View style={{borderBottomWidth:5, flexDirection: 'row',borderBottomColor:'#F2DA00'}}>
    <Text style={{fontSize:25,fontWeight:'bold',marginBottom:-10}}>0.001</Text>
    <Text style={{fontSize:25,fontWeight:'bold',marginBottom:-10}}>KLAY</Text>
</View>