如何在 React Native 应用程序中显示超链接?
例如
<a href="https://google.com>Google</a>
像这样的东西:
<Text style={{color: 'blue'}} onPress={() => Linking.openURL('http://google.com')}> Google </Text>
使用Linking与 React Native 捆绑的模块。
Linking
import { Linking } from 'react-native';