├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── README.md ├── __tests__ └── App-test.js ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── foodfinder │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── foodfinder │ │ │ ├── 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 ├── assets ├── banners │ ├── food-banner1.jpg │ ├── food-banner2.jpg │ ├── food-banner3.jpg │ ├── food-banner4.jpg │ └── food-banner5.jpg ├── filesBase64.js ├── logo.png └── map_marker.png ├── babel.config.js ├── components ├── Card.js ├── StarRating.js └── context.js ├── index.js ├── ios ├── FoodFinder-tvOS │ └── Info.plist ├── FoodFinder-tvOSTests │ └── Info.plist ├── FoodFinder.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── FoodFinder-tvOS.xcscheme │ │ └── FoodFinder.xcscheme ├── FoodFinder.xcworkspace │ └── contents.xcworkspacedata ├── FoodFinder │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── FoodFinderTests │ ├── FoodFinderTests.m │ └── Info.plist ├── Podfile └── Podfile.lock ├── metro.config.js ├── model ├── Notifications.js ├── data.js ├── mapData.js └── users.js ├── package.json └── screens ├── BookmarkScreen.js ├── CardItemDetails.js ├── CardListScreen.js ├── DrawerContent.js ├── EditProfileScreen.js ├── ExploreScreen.js ├── HomeScreen.js ├── MainTabScreen.js ├── MapTestScreen.js ├── NotificationScreen.js ├── ProfileScreen.js ├── RootStackScreen.js ├── SettingsScreen.js ├── SignInScreen.js ├── SignUpScreen.js ├── SplashScreen.js └── SupportScreen.js /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/foodfinder/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/android/app/src/debug/java/com/foodfinder/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/foodfinder/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/android/app/src/main/java/com/foodfinder/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/foodfinder/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/android/app/src/main/java/com/foodfinder/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/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/itzpradip/Food-Finder-React-Native-App/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/itzpradip/Food-Finder-React-Native-App/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/itzpradip/Food-Finder-React-Native-App/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/itzpradip/Food-Finder-React-Native-App/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/itzpradip/Food-Finder-React-Native-App/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/itzpradip/Food-Finder-React-Native-App/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/itzpradip/Food-Finder-React-Native-App/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/itzpradip/Food-Finder-React-Native-App/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/itzpradip/Food-Finder-React-Native-App/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/app.json -------------------------------------------------------------------------------- /assets/banners/food-banner1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/assets/banners/food-banner1.jpg -------------------------------------------------------------------------------- /assets/banners/food-banner2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/assets/banners/food-banner2.jpg -------------------------------------------------------------------------------- /assets/banners/food-banner3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/assets/banners/food-banner3.jpg -------------------------------------------------------------------------------- /assets/banners/food-banner4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/assets/banners/food-banner4.jpg -------------------------------------------------------------------------------- /assets/banners/food-banner5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/assets/banners/food-banner5.jpg -------------------------------------------------------------------------------- /assets/filesBase64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/assets/filesBase64.js -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/map_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/assets/map_marker.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/components/Card.js -------------------------------------------------------------------------------- /components/StarRating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/components/StarRating.js -------------------------------------------------------------------------------- /components/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/components/context.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/index.js -------------------------------------------------------------------------------- /ios/FoodFinder-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/ios/FoodFinder-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/FoodFinder-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/ios/FoodFinder-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/FoodFinder.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/ios/FoodFinder.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/FoodFinder.xcodeproj/xcshareddata/xcschemes/FoodFinder-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/ios/FoodFinder.xcodeproj/xcshareddata/xcschemes/FoodFinder-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/FoodFinder.xcodeproj/xcshareddata/xcschemes/FoodFinder.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/ios/FoodFinder.xcodeproj/xcshareddata/xcschemes/FoodFinder.xcscheme -------------------------------------------------------------------------------- /ios/FoodFinder.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/ios/FoodFinder.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/FoodFinder/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/ios/FoodFinder/AppDelegate.h -------------------------------------------------------------------------------- /ios/FoodFinder/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/ios/FoodFinder/AppDelegate.m -------------------------------------------------------------------------------- /ios/FoodFinder/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/ios/FoodFinder/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/FoodFinder/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/ios/FoodFinder/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/FoodFinder/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/ios/FoodFinder/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/FoodFinder/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/ios/FoodFinder/Info.plist -------------------------------------------------------------------------------- /ios/FoodFinder/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/ios/FoodFinder/main.m -------------------------------------------------------------------------------- /ios/FoodFinderTests/FoodFinderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/ios/FoodFinderTests/FoodFinderTests.m -------------------------------------------------------------------------------- /ios/FoodFinderTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/ios/FoodFinderTests/Info.plist -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/metro.config.js -------------------------------------------------------------------------------- /model/Notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/model/Notifications.js -------------------------------------------------------------------------------- /model/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/model/data.js -------------------------------------------------------------------------------- /model/mapData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/model/mapData.js -------------------------------------------------------------------------------- /model/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/model/users.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/package.json -------------------------------------------------------------------------------- /screens/BookmarkScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/screens/BookmarkScreen.js -------------------------------------------------------------------------------- /screens/CardItemDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/screens/CardItemDetails.js -------------------------------------------------------------------------------- /screens/CardListScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/screens/CardListScreen.js -------------------------------------------------------------------------------- /screens/DrawerContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/screens/DrawerContent.js -------------------------------------------------------------------------------- /screens/EditProfileScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/screens/EditProfileScreen.js -------------------------------------------------------------------------------- /screens/ExploreScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/screens/ExploreScreen.js -------------------------------------------------------------------------------- /screens/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/screens/HomeScreen.js -------------------------------------------------------------------------------- /screens/MainTabScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/screens/MainTabScreen.js -------------------------------------------------------------------------------- /screens/MapTestScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/screens/MapTestScreen.js -------------------------------------------------------------------------------- /screens/NotificationScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/screens/NotificationScreen.js -------------------------------------------------------------------------------- /screens/ProfileScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/screens/ProfileScreen.js -------------------------------------------------------------------------------- /screens/RootStackScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/screens/RootStackScreen.js -------------------------------------------------------------------------------- /screens/SettingsScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/screens/SettingsScreen.js -------------------------------------------------------------------------------- /screens/SignInScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/screens/SignInScreen.js -------------------------------------------------------------------------------- /screens/SignUpScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/screens/SignUpScreen.js -------------------------------------------------------------------------------- /screens/SplashScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/screens/SplashScreen.js -------------------------------------------------------------------------------- /screens/SupportScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/Food-Finder-React-Native-App/HEAD/screens/SupportScreen.js --------------------------------------------------------------------------------