Ajay Sivan
Ajay Sivan

Reputation: 2989

NetInfo removed from React Native error even after upgrading to 'react-native-community/netinfo'

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';

enter image description here

Upvotes: 0

Views: 1299

Answers (1)

Francois Nadeau
Francois Nadeau

Reputation: 7463

Stop the packager, remove your node_modules folder, and reinstall the packages yarn install, and then restart the packager.

Upvotes: 1

Related Questions