├── .buckconfig ├── .gitattributes ├── .gitignore ├── App.js ├── Constants ├── images.js └── index.js ├── README.md ├── __tests__ └── App.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── foodapp │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── foodapp │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── drawable │ │ ├── splashscreen.xml │ │ └── splashscreen_image.png │ │ ├── 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 │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── assets └── images │ ├── img1.jpg │ ├── img3.jpg │ ├── img4.jpg │ ├── img5.jpg │ ├── img6.jpg │ └── img7.jpg ├── babel.config.js ├── index.js ├── ios ├── Podfile ├── foodapp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── foodapp.xcscheme └── foodapp │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ └── LaunchScreen.xib │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── SplashScreen.imageset │ │ ├── Contents.json │ │ └── splashscreen.png │ └── SplashScreenBackground.imageset │ │ ├── Contents.json │ │ └── background.png │ ├── Info.plist │ ├── SplashScreen.storyboard │ ├── Supporting │ └── Expo.plist │ └── main.m ├── metro.config.js ├── package.json └── screens ├── Details.js ├── Home.js └── index.js /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/.buckconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/.gitignore -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/App.js -------------------------------------------------------------------------------- /Constants/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/Constants/images.js -------------------------------------------------------------------------------- /Constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/Constants/index.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/__tests__/App.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/foodapp/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/android/app/src/debug/java/com/foodapp/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/foodapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/android/app/src/main/java/com/foodapp/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/foodapp/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/android/app/src/main/java/com/foodapp/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/splashscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/android/app/src/main/res/drawable/splashscreen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/android/app/src/main/res/drawable/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/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/YGBReda/food_app_react_native/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/YGBReda/food_app_react_native/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/YGBReda/food_app_react_native/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/YGBReda/food_app_react_native/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/YGBReda/food_app_react_native/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/YGBReda/food_app_react_native/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/YGBReda/food_app_react_native/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/YGBReda/food_app_react_native/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/YGBReda/food_app_react_native/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/app.json -------------------------------------------------------------------------------- /assets/images/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/assets/images/img1.jpg -------------------------------------------------------------------------------- /assets/images/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/assets/images/img3.jpg -------------------------------------------------------------------------------- /assets/images/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/assets/images/img4.jpg -------------------------------------------------------------------------------- /assets/images/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/assets/images/img5.jpg -------------------------------------------------------------------------------- /assets/images/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/assets/images/img6.jpg -------------------------------------------------------------------------------- /assets/images/img7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/assets/images/img7.jpg -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/foodapp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/ios/foodapp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/foodapp.xcodeproj/xcshareddata/xcschemes/foodapp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/ios/foodapp.xcodeproj/xcshareddata/xcschemes/foodapp.xcscheme -------------------------------------------------------------------------------- /ios/foodapp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/ios/foodapp/AppDelegate.h -------------------------------------------------------------------------------- /ios/foodapp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/ios/foodapp/AppDelegate.m -------------------------------------------------------------------------------- /ios/foodapp/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/ios/foodapp/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/foodapp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/ios/foodapp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/foodapp/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/ios/foodapp/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/foodapp/Images.xcassets/SplashScreen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/ios/foodapp/Images.xcassets/SplashScreen.imageset/Contents.json -------------------------------------------------------------------------------- /ios/foodapp/Images.xcassets/SplashScreen.imageset/splashscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/ios/foodapp/Images.xcassets/SplashScreen.imageset/splashscreen.png -------------------------------------------------------------------------------- /ios/foodapp/Images.xcassets/SplashScreenBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/ios/foodapp/Images.xcassets/SplashScreenBackground.imageset/Contents.json -------------------------------------------------------------------------------- /ios/foodapp/Images.xcassets/SplashScreenBackground.imageset/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/ios/foodapp/Images.xcassets/SplashScreenBackground.imageset/background.png -------------------------------------------------------------------------------- /ios/foodapp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/ios/foodapp/Info.plist -------------------------------------------------------------------------------- /ios/foodapp/SplashScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/ios/foodapp/SplashScreen.storyboard -------------------------------------------------------------------------------- /ios/foodapp/Supporting/Expo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/ios/foodapp/Supporting/Expo.plist -------------------------------------------------------------------------------- /ios/foodapp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/ios/foodapp/main.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/package.json -------------------------------------------------------------------------------- /screens/Details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/screens/Details.js -------------------------------------------------------------------------------- /screens/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/screens/Home.js -------------------------------------------------------------------------------- /screens/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YGBReda/food_app_react_native/HEAD/screens/index.js --------------------------------------------------------------------------------