react native 打包安装出现闪退

react native 打包安装出现闪退的问题记录
1:定义自定义组件propTypes 时使用了过时的方法View.propTypes.style
现处理:

import PropTypes from 'prop-types';
//----------------------------------//
// 定义相关属性类型
    static propTypes = {
        badgeStyle: PropTypes.style
    };

你可能感兴趣的:(react native 打包安装出现闪退)