gpt4 book ai didi

react native webview : For iOS text too small

转载 作者:行者123 更新时间:2023-12-04 03:58:52 30 4
gpt4 key购买 nike

我用过react-native-webview用于渲染 HTML 文本。但是 iOS 中的文本太小了,而在 android 中它是完美的。

以下是代码行:

import { WebView } from "react-native-webview";


render() {
<WebView
originWhitelist={['*']}
source={{ html: '<p>This is a static HTML source!</p>' }}
/>
}

附上截图:

enter image description here

最佳答案

使用视口(viewport)元标记来控制移动浏览器上的布局

<meta name="viewport" content="width=device-width, initial-scale=1">

<WebView
originWhitelist={['*']}
source={{ html: '<html><head><meta name="viewport" content="width=device-width, initial-scale=1.0"></head><body><p>This is a static HTML source!</p></body></html>' }}
/>

链接: https://github.com/react-native-community/react-native-webview/issues/386

关于 react native webview : For iOS text too small,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54997381/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com