I am trying to use WebView Component inside View component, for a react native application I am working on. When I embed WebView inside View, I am not seeing the content I am di
For WebView in View, We can use this code for .js and .tsx files in React-native.
import React, { Component } from 'react'; import { View } from 'react-native'; import { WebView } from 'react-native-webview'; export default class WebViewExample extends Component { render() { return ( ); } }