Answers for "expo dont show warnings"

0

hide warnings in expo app

console.disableYellowBox = true;
// add this is main component of react native application
Posted by: Guest on July-26-2020
0

expo ignore warnings

import { LogBox } from 'react-native';
LogBox.ignoreLogs(['Warning: ...']); // Ignore log notification by message
LogBox.ignoreAllLogs();//Ignore all log notifications
Posted by: Guest on January-30-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language