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/
}}
/>
网友评论