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
Let me give the simplest example which will work seamlessly:
import React from 'react';
import { WebView } from 'react-native';
export default class App extends React.Component {
render() {
return (
);
}
}
Do not add your WebView component within a view that created problem and webview url is not rendered rather styles of view will be shown.