[React Native] Disable and Ignore Yellow Box Warnings in React Native

Yellow box warnings in react native can be intrusive. We will use console.disableYellowBox to disable the yellow box entirely. We’ll also use console.ignoredYellowBox to selectively disabled warnings.

 

Disable all the yellow box warning:

console.disableYellowBox

 

Disable some of them:

console.ignoredYellowBox = ['Warning: Each', "Warning: Failed prop type"];

 

    原文作者:Zhentiw
    原文地址: https://www.cnblogs.com/Answer1215/p/6945015.html
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞