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

后端 未结 14 1892
悲哀的现实
悲哀的现实 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条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-14 06:34

    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.

提交回复
热议问题