web-dev-qa-db-ja.com

react-native-webview:iOSテキストが小さすぎる

利用した react-native-webview HTMLテキストのレンダリング用。しかし、Androidは完璧ですが、iOSではテキストが小さすぎます。

ここにコード行があります:

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


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

スクリーンショットを添付:

enter image description here

6
Payal Maniyar

<meta>に加えて、<style>タグを<head>セクションに追加してフォントを拡大縮小できます。

<style>
    body { font-size: 120%; Word-wrap: break-Word; overflow-wrap: break-Word; }
</style>
1