react-native-qrcode-scanner ViewPropTypes 에러 해결

young·2023년 3월 13일

ERROR : Invariant Violation: ViewPropTypes has been removed from React Native. Migrate to ViewPropTypes exported from 'deprecated-react-native-prop-types'., js engine: hermes

React-Native를 최신버전으로 업데이트 하면서 ViewPropTypes 를 더이상 지원하지 않음으로 인한 에러

해결방법

아래 경로에서
node_modules/react-native/camera/src/RNCamera.js

제거

import { ViewPropTypes } from 'react-native'

추가

import { ViewPropTypes } from 'deprecated-react-native-prop-types';
profile
hello world

0개의 댓글