I have such error in React Native project,
Undefined is not an object (evaluating '_react.PropTypes.number'
I have new import of PropTypes in all project. Any ideas how to solve this issue?
React.PropTypes has been moved from react package to prop-types package, you're probably using an outdated third party component that havn't made the necessary updates.
Edit : if this error is from your PropTypes declaration you have to use PropTypes.number instead of React.PropTypes.number