Reputation: 2989
Invariant Violation: NetInfo has been removed from React Native. It can now be installed and imported from 'react-native-netinfo' instead of 'react-native'
Getting the above error even after updating react-native-netinfo
to react-native-community/netinfo
. I have also changed the imports to import NetInfo from '@react-native-community/netinfo';
Upvotes: 0
Views: 1299
Reputation: 7463
Stop the packager, remove your node_modules folder, and reinstall the packages yarn install
, and then restart the packager.
Upvotes: 1