zl程序教程

您现在的位置是:首页 >  前端

当前栏目

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

React in and native Box Disable ignore
2023-09-14 09:00:51 时间

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"];