react-native-webview에서는 손가락 두 개를 이용해 내용을 zoom할 수 있습니다.
zoom을 비활성화하려면 html 태그 상단에 다음 문장을 추가해주면 됩니다.
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0">
이를 적용한 모습은 아래와 같습니다,
<WebView
...
source={{
html:`
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0">
${html} //html 값이 여기 들어가면 됩니다.
`
}}
...
/>
참고
https://stackoverflow.com/a/48252727/15458307
'모바일 앱 > React Native' 카테고리의 다른 글
[React Native] Error: spawn ./gradlew EACCES (0) | 2021.08.12 |
---|---|
[React Native] __DEV__ (0) | 2021.08.12 |
[React Native] React Native modal 배경 클릭해서 Modal 닫기 (1) | 2021.07.29 |
[React Native] WebView <img> click event 처리 (1) | 2021.07.26 |
[React Native] WebView 강제 종료되는 버그 (0) | 2021.07.22 |