1. ホーム
  2. javascript

[解決済み] React Nativeアプリでハイパーリンクを表示するには?

2022-04-21 19:33:50

質問

React Nativeアプリでハイパーリンクを表示するにはどうすればよいですか?

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

解決方法は?

このような感じです。

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

を使用しています。 Linking モジュールは、React Nativeにバンドルされています。

import { Linking } from 'react-native';