项目开发中,会碰到react-native 黄色警告框提示,原因有:即将退出版本的插件,也有提示用其他参数代替现在的所有的参数,不影响开发流程的情况下可以关闭警告框
//关闭其中某些yellow警告
console.ignoredYellowBox = ['Warning: BackAndroid is deprecated. Please use BackHandler instead.','source.uri should not be an empty string','Invalid props.style key'];
// 关闭全部yellow警告
console.disableYellowBox = true
将代码根据需要加在index.js文件中,放在AppRegistry.registerComponent('App', () => App)之前