如何使文字与线对齐?

时间:2019-04-10 13:53:19

标签: react-native

我想实现以下目标。将文字放在两行之间。但到目前为止我还没有做。 。

enter image description here

到目前为止,我所取得的成就是这样的

enter image description here

我的代码是

for i,c in enumerate( yoursting ):
    pass

print(i+1)

是否有更好的方法来实现? 建议我如何实现? 谢谢,

1 个答案:

答案 0 :(得分:2)

需要添加alignItems:'center' 就像您在制作伸缩方向行时一样,alignitems属性可垂直对齐内容,水平对齐内容

<View style={{ flexDirection: 'row', justifyContent: 'space-between', flex:1 , alignItems:'center'}}>

示例代码:https://snack.expo.io/@msbot01/center-line