我如何从 firebase 检索 url 并将其显示为可点击的 link 在本机反应中?
how can i retrieve an url from firebase and show it as clickable link in react native?
<Text> {website link}</Text>
它显示为文本,现在我希望它是可点击的 link,那么如何使用 OpenURL 并在其参数中发送 firestore 字段?
import { Linking } from 'react-native';
// define websiteLink variable somewhere
....
<Text
onPress={() => Linking.openURL(websiteLink)}>
{websiteLink}
</Text>
<Text> {website link}</Text>
它显示为文本,现在我希望它是可点击的 link,那么如何使用 OpenURL 并在其参数中发送 firestore 字段?
import { Linking } from 'react-native';
// define websiteLink variable somewhere
....
<Text
onPress={() => Linking.openURL(websiteLink)}>
{websiteLink}
</Text>