React Native Webview not loading any url (React native web view not working)

后端 未结 14 1932
悲哀的现实
悲哀的现实 2020-12-14 05:41

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         


        
14条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-14 06:22

    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.

提交回复
热议问题