├── .buckconfig ├── .editorconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── __tests__ └── App-test.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── navigation │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── navigation │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── appdemo.js ├── babel.config.js ├── index.js ├── ios ├── GoogleService-Info.plist ├── Navigation.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── Navigation.xcscheme ├── Navigation.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Navigation │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── Navigation.entitlements │ └── main.m ├── NavigationTests │ ├── Info.plist │ └── NavigationTests.m ├── Podfile └── Podfile.lock ├── metro.config.js ├── package.json └── src ├── Components ├── ButtonComp.js └── HeaderComp.js ├── Navigation ├── AuthStack.js ├── ExploreStack.js ├── HomeStack.js ├── MainStack.js ├── ProfileStack.js ├── Routes.js └── TabRoutes.js ├── Screens ├── EditProfile │ └── EditProfile.js ├── Explore │ ├── Explore.js │ └── styles.js ├── Home │ ├── Home.js │ └── styles.js ├── ProductDetails │ └── ProductDetails.js ├── Profile │ ├── Profile.js │ └── styles.js ├── Search │ └── Search.js └── index.js ├── assets └── images │ ├── explore.png │ ├── explore@2x.png │ ├── explore@3x.png │ ├── home.png │ ├── home@2x.png │ ├── home@3x.png │ ├── person.png │ ├── person@2x.png │ └── person@3x.png ├── constants ├── imagePath.js └── navigationStrings.js └── helper └── notificationServices.js /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/.buckconfig -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # Windows files 2 | [*.bat] 3 | end_of_line = crlf 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/App.js -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/navigation/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/app/src/debug/java/com/navigation/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/navigation/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/app/src/main/java/com/navigation/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/navigation/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/app/src/main/java/com/navigation/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/app.json -------------------------------------------------------------------------------- /appdemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/appdemo.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/index.js -------------------------------------------------------------------------------- /ios/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/ios/GoogleService-Info.plist -------------------------------------------------------------------------------- /ios/Navigation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/ios/Navigation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Navigation.xcodeproj/xcshareddata/xcschemes/Navigation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/ios/Navigation.xcodeproj/xcshareddata/xcschemes/Navigation.xcscheme -------------------------------------------------------------------------------- /ios/Navigation.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/ios/Navigation.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Navigation.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/ios/Navigation.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Navigation/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/ios/Navigation/AppDelegate.h -------------------------------------------------------------------------------- /ios/Navigation/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/ios/Navigation/AppDelegate.m -------------------------------------------------------------------------------- /ios/Navigation/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/ios/Navigation/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Navigation/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/ios/Navigation/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/Navigation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/ios/Navigation/Info.plist -------------------------------------------------------------------------------- /ios/Navigation/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/ios/Navigation/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Navigation/Navigation.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/ios/Navigation/Navigation.entitlements -------------------------------------------------------------------------------- /ios/Navigation/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/ios/Navigation/main.m -------------------------------------------------------------------------------- /ios/NavigationTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/ios/NavigationTests/Info.plist -------------------------------------------------------------------------------- /ios/NavigationTests/NavigationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/ios/NavigationTests/NavigationTests.m -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/package.json -------------------------------------------------------------------------------- /src/Components/ButtonComp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/Components/ButtonComp.js -------------------------------------------------------------------------------- /src/Components/HeaderComp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/Components/HeaderComp.js -------------------------------------------------------------------------------- /src/Navigation/AuthStack.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Navigation/ExploreStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/Navigation/ExploreStack.js -------------------------------------------------------------------------------- /src/Navigation/HomeStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/Navigation/HomeStack.js -------------------------------------------------------------------------------- /src/Navigation/MainStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/Navigation/MainStack.js -------------------------------------------------------------------------------- /src/Navigation/ProfileStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/Navigation/ProfileStack.js -------------------------------------------------------------------------------- /src/Navigation/Routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/Navigation/Routes.js -------------------------------------------------------------------------------- /src/Navigation/TabRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/Navigation/TabRoutes.js -------------------------------------------------------------------------------- /src/Screens/EditProfile/EditProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/Screens/EditProfile/EditProfile.js -------------------------------------------------------------------------------- /src/Screens/Explore/Explore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/Screens/Explore/Explore.js -------------------------------------------------------------------------------- /src/Screens/Explore/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/Screens/Explore/styles.js -------------------------------------------------------------------------------- /src/Screens/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/Screens/Home/Home.js -------------------------------------------------------------------------------- /src/Screens/Home/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/Screens/Home/styles.js -------------------------------------------------------------------------------- /src/Screens/ProductDetails/ProductDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/Screens/ProductDetails/ProductDetails.js -------------------------------------------------------------------------------- /src/Screens/Profile/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/Screens/Profile/Profile.js -------------------------------------------------------------------------------- /src/Screens/Profile/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/Screens/Profile/styles.js -------------------------------------------------------------------------------- /src/Screens/Search/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/Screens/Search/Search.js -------------------------------------------------------------------------------- /src/Screens/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/Screens/index.js -------------------------------------------------------------------------------- /src/assets/images/explore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/assets/images/explore.png -------------------------------------------------------------------------------- /src/assets/images/explore@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/assets/images/explore@2x.png -------------------------------------------------------------------------------- /src/assets/images/explore@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/assets/images/explore@3x.png -------------------------------------------------------------------------------- /src/assets/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/assets/images/home.png -------------------------------------------------------------------------------- /src/assets/images/home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/assets/images/home@2x.png -------------------------------------------------------------------------------- /src/assets/images/home@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/assets/images/home@3x.png -------------------------------------------------------------------------------- /src/assets/images/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/assets/images/person.png -------------------------------------------------------------------------------- /src/assets/images/person@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/assets/images/person@2x.png -------------------------------------------------------------------------------- /src/assets/images/person@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/assets/images/person@3x.png -------------------------------------------------------------------------------- /src/constants/imagePath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/constants/imagePath.js -------------------------------------------------------------------------------- /src/constants/navigationStrings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/constants/navigationStrings.js -------------------------------------------------------------------------------- /src/helper/notificationServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulsher7/React-Native-Navigation6/HEAD/src/helper/notificationServices.js --------------------------------------------------------------------------------