如何使文本的某些部分可单击,而某些部分在react-native中具有不同的文本颜色

时间:2017-09-22 11:04:33

标签: android ios react-native

我正在尝试制作不同颜色和可点击的文本的一部分

这是我的代码:

<Text style = {styles.term_service}>By signing up, you agree to Terms of Service and Privacy Policy.</Text>

我希望使服务条款和隐私政策可以点击并具有不同的颜色。

1 个答案:

答案 0 :(得分:4)

您也可以使用嵌套文字doc Text接受onPress strict setup process

<Text style = {styles.term_service}>By signing up, you agree to Terms of Service and <Text onPress={()=> someAction()} style = {{ color: '#fff' }}>Privacy Policy.</Text></Text>