Computer Programming/React-Native

React-Native Error Case(ViewPropTypes)

JYCoder 2022. 8. 26. 02:17

Error Message

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

 

Solution

If you got the error even though you're not using ViewPropTypes.

In this case, you can try to comment the function out in 'node_modules>react-native>index.js' file.

ViewPropTypes를 사용하지도 않았는데 위와 같은 에러가 떴다면 'node_modules>react-native>index.js' 파일에서 아래와 같이 주석 처리 해보세요.

 

  // get ViewPropTypes(): $FlowFixMe {
  //   invariant(
  //     false,
  //     'ViewPropTypes has been removed from React Native. Migrate to ' +
  //       "ViewPropTypes exported from 'deprecated-react-native-prop-types'.",
  //   );
  // },

 

LIST