Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

navigator is deprecated and has been removed even i don't use navigator

I don't use Navigator in my codes. But I am getting this error.

enter image description here

"dependencies": {
    "react": "16.0.0-alpha.12",
    "react-native": "0.45.1",
    "react-native-deprecated-custom-components": "^0.1.0",
    "react-native-router-redux": "^0.2.2",
    "react-redux": "^5.0.5",
    "redux": "^3.7.0"
},
"devDependencies": {
    "babel-jest": "20.0.3",
    "babel-preset-react-native": "2.0.0",
    "jest": "20.0.4",
    "react-test-renderer": "16.0.0-alpha.12"
}

Anyone can help me?

like image 288
wagng Avatar asked Nov 30 '25 05:11

wagng


1 Answers

This happened to me when my IDE automatically added the following lines:

import * as AsyncStorage from "react-native";

which means: everything in that file, which won't work. Solved it by changing to this:

import AsyncStorage from "react-native";
like image 154
Anders Hård Avatar answered Dec 06 '25 15:12

Anders Hård



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!