如何在react-native中的WebView中缩小页面?

12 浏览
0 Comments

如何在react-native中的WebView中缩小页面?

我在react-native中使用"WebView"来渲染一个网页。这个网页没有移动友好的用户界面。

当我在Chrome浏览器中打开它时,它看起来像下面这样。而我想要像下面这样渲染它。

但是当我渲染下面的代码时,它看起来像下面显示的图片。

请注意,我尝试了不同的属性automaticallyAdjustContentInsets = {false}scalesPageToFit={false}。但它没有给我想要的输出结果。

render(){
    const URL  = "https://stellarterm.com";
    return(
          

结果

enter image description here

如果您有任何解决方案,请随时提出。任何第三方库也可以。

0