美文网首页
react-native-webview20-04-27

react-native-webview20-04-27

作者: 你坤儿姐 | 来源:发表于2020-04-27 09:36 被阅读0次

WebView组件原本在react-native中引用,现在已经被完全引入到react-native-webview中了,具体资料可以到GitHub上搜索 react-native-webview,简单记录如下
安装
yarn add react-native-webview
npm install --save react-native-webview
引入:
import { WebView } from 'react-native-webview'
使用:

 <WebView 
            ref={webView => this.webView =webView}
            startInLoadingState={true}
            onNavigationStateChange={e=>this.onNavigationStateChange(e)}//当导航发生变化的时候
            source={{https://www.jianshu.com/
           }}
        /> 

相关文章

网友评论

      本文标题:react-native-webview20-04-27

      本文链接:https://www.haomeiwen.com/subject/avbewhtx.html