React Native App Crashing al inicio
For those who still have a similar issue,
the key is to replace every use of View.propTypes.style with ViewPropTypes.style
(and make sure that you include a :
import { ViewPropTypes } from 'react-native';
at the top of the file).
Alexandre Dao