react-native关闭所有黄色警告

写RN经常会遇到黄色警告,很无奈,很多很多的黄色警告都是由组件自己导致的,建议在index.js 内的

AppRegistry.registerComponent('shareFile', () => App);

之前写入以下代码可屏蔽此提示。

 

console.ignoredYellowBox = ['Warning: BackAndroid is deprecated. Please use BackHandler instead.','source.uri should not be an empty string','Invalid props.style key'];
 
console.disableYellowBox = true // 关闭全部黄色警告

 

posted @ 2018-10-28 15:25  dellyoung  阅读(1149)  评论(0编辑  收藏  举报