react-native 关闭黄屏警告

将代码放在index.js 中 AppRegistry.registerComponent('App', () => App)之前

 

 //关闭其中某些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 

 

posted @ 2020-07-05 18:07  _DC  阅读(353)  评论(0编辑  收藏  举报