I am trying to add Wix navigation library to my project according to https://wix.github.io/react-native-navigation/#/docs/Installing but when i run the npm install --save react-native-navigation
command in terminal and then i open my android project in android studio, i don't see any library module for navigation in my project. But the name of react-native-navigation will appear in package.json file.
here is my package.json file:
{
"name": "PleaseAnswer",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"dependencies": {
"react": "16.6.3",
"react-native": "0.57.8",
"react-native-navigation": "^2.5.0"
},
"devDependencies": {
"babel-jest": "23.6.0",
"jest": "23.6.0",
"metro-react-native-babel-preset": "0.51.1",
"react-test-renderer": "16.6.3"
},
"jest": {
"preset": "react-native"
}
}