小编典典

如何在 React Native App 中显示超链接?

all

如何在 React Native 应用程序中显示超链接?

例如

<a href="https://google.com>Google</a>

阅读 216

收藏
2022-08-03

共1个答案

小编典典

像这样的东西:

<Text style={{color: 'blue'}}
      onPress={() => Linking.openURL('http://google.com')}>
  Google
</Text>

使用Linking与 React Native 捆绑的模块。

import { Linking } from 'react-native';
2022-08-03