react-native关闭所有黄色警告

陈泰宁
2023-12-01

写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 // 关闭全部黄色警告

 

转载于:https://www.cnblogs.com/piaobodewu/p/9865748.html

 类似资料: