ReactNative学习-webView
Posted YZ-M
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ReactNative学习-webView相关的知识,希望对你有一定的参考价值。
在软件内部打开一个网页--不喜欢它没有办法返回,还需要再添加返回按钮==
import React from ‘react‘; import { AppRegistry, Component, ScrollView, TouchableOpacity, Text, View, WebView } from ‘react-native‘; export default class WebViewView extends React.Component { render() { var url = this.props.stateParams; return ( <WebView ref="webview" automaticallyAdjustContentInsets={false} style={{backgroundColor:‘rgba(255,255,255,0.8)‘, height:350}} source={{uri:url}} javascriptEnabled={true} domStorageEnabled={true} decelerationRate="normal" startInLoadingState={true} /> ) } }
以上是关于ReactNative学习-webView的主要内容,如果未能解决你的问题,请参考以下文章
在 webview_flutter 中启用捏合和缩放,在哪里添加代码片段 [this.webView.getSettings().setBuiltInZoomControls(true);]
我的片段中有 webview,当滑动 webview 时, viewPager 也开始滑动