gpt4 book ai didi

react-native - 在 Text 组件内垂直对齐 Pressable

转载 作者:行者123 更新时间:2023-12-04 13:53:34 28 4
gpt4 key购买 nike

<View
style={{
flexDirection: "row",
}}
>
<Text
style={{
flex: 1,
}}
>
By continuing, you agree to our{" "}
<Pressable
onPress={...}
>
<Text>
Terms of Service
</Text>
</Pressable>
</Text>
</View>
“服务条款”比“继续,即表示您同意我们的”打印得更高。我如何垂直对齐它们?
或者更准确地说 - 我如何获得 Pressable文本垂直对齐到底部?
enter image description here

最佳答案

下面的代码段应该可以工作,但如果不试一试就很难理解。如果您可以提供屏幕截图,我可以提供更多帮助,以获得更合适的结果。

<View>
<Text style={{
display: 'flex',
flexDirection: 'row',
justifyContent: 'space-between',
alignItems: 'center'
}}>
By continuing, you agree to our{" "}
<Pressable
onPress={() => {
navigate("LegalStack", { screen: "Terms" });
}}
>
<Text style={{margin: 'auto'}}>
Terms of Service
</Text>
</Pressable>
</Text>
</View>

关于react-native - 在 Text 组件内垂直对齐 Pressable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66590167/

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