小编rea*_*arb的帖子

在React Native Alert中显示超链接?

我想使用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)

alert hyperlink react-native

5
推荐指数
1
解决办法
1249
查看次数

标签 统计

alert ×1

hyperlink ×1

react-native ×1