react-native-webview20-04-27

2020-04-27  本文已影响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/
           }}
        /> 
上一篇 下一篇

猜你喜欢

热点阅读