我想使用Alert Api显示操作系统行为警报。我问自己是否可以在警报文本中显示超链接?
Alert.alert(
'Alert',
'This is an Alert. I want to include hyperlinks here.',
[
{
text: 'Cancel',
onPress: () => console.log("Alert cancel"),
style: 'cancel',
},
{
text: 'Accept',
onPress: () => console.log("Alert accept"),
style: 'default'
},
]
);
Run Code Online (Sandbox Code Playgroud)