Answers for "disable warning in react natie"

1

react native disable warnings

// for RN >= 0.63
// in your entry file (eg. App.tsx)

import { LogBox } from 'react-native';
// ignore warnings that start in a string that matchs any of
// the ones in the array
LogBox.ignoreLogs(["Require cycle:"])
Posted by: Guest on September-06-2021

Code answers related to "disable warning in react natie"

Code answers related to "Javascript"

Browse Popular Code Answers by Language