I am looking for a way to open chrome browser using react-native-webview plugin ref. : https://www.npmjs.com/package/react-native-webview .
As i try to implement the plugin is always open the system browser. which is not full fill my requirements , so what i need , is there a way to open chrome browser forcefully.
If chrome is not installed on the android device then system will ask to download.
What i need in a simple way :
<WebView
source={{uri: "https://www.google.com"}}
javaScriptEnabledAndroid={true}
/>
So webview to be use google chrome browser .
Is this possible ?
Thanks in advance .