gpt4 book ai didi

android - react 原生 : How to remove vertical spacing in

转载 作者:行者123 更新时间:2023-12-04 23:44:52 25 4
gpt4 key购买 nike

当我使用一些大字体大小时,在 react 原生默认值时,我得到了垂直间距。我试过lineHeight但是在给出确切的 lineHeight 等于 fontSize 之后,它只是从顶部而不是从底部删除间距。我添加了边框以查看差异。

<Text 
style={{
fontSize: 40,
lineHeight: 40,
textTransform: 'uppercase',
borderWidth: 1
}}
>
Account
</Text>
我想从顶部和底部添加一些固定边距,但是额外的空间增加了元素之间的间隙。而且我不知道这个间距是多少,所以我可以从原始边距添加/替换它。
注意:我现在只是为 android 做这件事。
enter image description here

最佳答案

<Text
style={{
fontSize: 40,
textTransform: 'uppercase',
borderWidth: 1,
alignItems: 'center',
justifyContent: 'center',
textAlign: 'center',
margin: 50,
alignSelf: 'flex-start'
}}
>
Account
</Text>
我认为你需要这样的输出
enter image description here

关于android - react 原生 : How to remove vertical spacing in <Text>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71422322/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com