react-native2 [React Native] Jest / SyntaxError: Cannot use import statement outside a module React Native에서 jest로 테스트 코드를 작성 중 다음과 같은 에러를 마주쳤습니다. react-native-vector-icons를 다운받고 import하고 사용할 때 발생한 버그인데요, package.json 파일에 아래 문장을 추가해주어 문제를 해결하였습니다. { "jest":{ ... "transformIgnorePatterns": [ "node_modules/(?!react-native|react-navigation)/" ] ... } } 2021. 9. 6. [React Native] React Native Webview 줌(zoom) 비활성화하기 react-native-webview에서는 손가락 두 개를 이용해 내용을 zoom할 수 있습니다. zoom을 비활성화하려면 html 태그 상단에 다음 문장을 추가해주면 됩니다. 이를 적용한 모습은 아래와 같습니다, 참고 https://stackoverflow.com/a/48252727/15458307 Disable zoom on web-view react-native? How to disable zoom on react-native web-view,is there a property like hasZoom={false}(just an example) that can be included in the below web-view tag that can disable zooming. It has to be w.. 2021. 7. 29. 이전 1 다음