gpt4 book ai didi

react-native - 文本和 TouchableOpacity 文本未出现在直线中

转载 作者:行者123 更新时间:2023-12-05 05:57:42 24 4
gpt4 key购买 nike

我试图在纯文本旁边附上一些可触摸不透明度,但是,两个可触摸之间的纯文本与可触摸文本不一致。请指导如何解决这个问题。

<Text style={{fontSize:10,textAlign:'center',}}>By clicking Sign up, you agree to Company's <TouchableOpacity ><Text style={{fontSize:10, color:'blue'}}>Terms of Service</Text></TouchableOpacity> and <TouchableOpacity><Text style={{fontSize:10, color:'blue'}}>Privacy Policy.</Text></TouchableOpacity></Text>  

It renders like this on physical device

最佳答案

不需要 touchableopacity 因为 TextonPress 属性。

<Text style={{fontSize:10,textAlign:'center'}}>

By clicking Sign up, you agree to Companys

<Text
onPress={() => alert("Terms of Service is clicked")}
style={{fontSize:10, color:'blue'}}>
Terms of Service
</Text>

and

<Text
onPress={() => alert("Privacy Policy is clicked")}
style={{fontSize:10, color:'blue'}}>
Privacy Policy.
</Text>

</Text>

关于react-native - 文本和 TouchableOpacity 文本未出现在直线中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68748906/

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