我想使用WebView在Web react-native上显示一种表单的显示,但是经过测试后,即使Web已经使用了响应功能,显示也可以横向延伸而不向下(像没有响应)。有没有办法使反应本机上的显示向下扩展? 这是WebView表单的脚本
Dynaform.js
import React, { Component } from 'react';
import {
Text,
View,
FlatList,
TouchableOpacity,
StyleSheet,
} from 'react-native';
import WebView from 'react-native-webview';
class Dynaform extends React.Component {
constructor(props) {
super(props)
this.state ={
isLoading : true
}
}
render() {
return(
<WebView
automaticallyAdjustContentInsets={false}
source={{uri : '//url'}}
javaScriptEnabled={true}
scalesPageToFit={true}
/>
)
}
}
const styles = StyleSheet.create({
container :{
width: '100%',
height: '100%',
marginRight: 100,
},
});
export default Dynaform;
我希望有人可以帮助我解决此问题.. 谢谢:)