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

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-08
  • 2021-10-08
  • 2022-12-23
  • 2021-06-15
  • 2022-12-23
猜你喜欢
  • 2021-07-08
  • 2021-08-16
  • 2022-12-23
  • 2021-10-08
  • 2022-03-07
  • 2021-10-16
相关资源
相似解决方案