I am trying to implement react native webview component in my application, but the web view is not loading any url its just showing the white page.
var React
import { WebView } from 'react-native'; is deprecated
use below line instead
npm install react-native-render-html@4.1.2 --save
then
import HTML from 'react-native-render-html';
react-native-render-html starting with version 4.2.0, react-native-webview is now a peer dependency. As a result, you need to install it yourself.