Hamidreza Sadegh
Hamidreza Sadegh

Reputation: 2196

NetInfo has been extracted from react-native core and will be removed

salam
after update react native appears this error

Warning: NetInfo has been extracted from react-native core
and will be removed in a future release.
It can now be installed and imported from '@react-native-community/netinfo'
instead of 'react-native'. 
See https://github.com/react-native-community/react-native-netinfo

enter image description here

Upvotes: 2

Views: 3234

Answers (1)

Hamidreza Sadegh
Hamidreza Sadegh

Reputation: 2196

npm install --save @react-native-community/netinfo
react-native link @react-native-community/netinfo

and change this

import { NetInfo } from "react-native";

to:

import NetInfo from "@react-native-community/netinfo";

Upvotes: 5

Related Questions