react native open webview code example
Example 1: open websute react native
import { Linking, Button } from "react-native";
{/*Insert the rest of your code :)*/}
<Button
title="Open Motorola Website"
onPress={() => Linking.openURL('https://www.motorola.com')}
/>
{/*Hello Moto*/}
Example 2: react native webview
import { WebView } from "react-native-webview";
<WebView
source={{
uri:
"https://www.google.com"
}}
/>