├── .buckconfig ├── .flowconfig ├── .watchmanconfig ├── 7017c054d03eeaf2d82102961d7ce41f ├── README.md ├── android ├── app │ ├── BUCK │ ├── app-release.apk │ ├── build.gradle │ ├── my-release-key.keystore │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── index.android.bundle │ │ ├── java │ │ └── com │ │ │ └── fooddelivery │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── components ├── App.js ├── Cart.js ├── ConfirmOrder.js ├── DashBoard.js ├── Home.js ├── HotDeals.js ├── Menu.js ├── Notifications.js ├── PastOrders.js ├── ReviewOrder.js └── images │ ├── drawer_screenshot.png │ ├── ic_menu_black_24dp.png │ └── menu_screenshot.png ├── helpers ├── ActionButton.js ├── ActionButtonItem.js └── navigation.js ├── index.android.js ├── index.ios.js ├── ios ├── foodDelivery.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── foodDelivery.xcscheme ├── foodDelivery │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── foodDeliveryTests │ ├── Info.plist │ └── foodDeliveryTests.m ├── my-release-key.keystore ├── package.json └── styles ├── hotdeals.js ├── menu.js └── root.js /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/.flowconfig -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /7017c054d03eeaf2d82102961d7ce41f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/7017c054d03eeaf2d82102961d7ce41f -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/README.md -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/android/app/app-release.apk -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/my-release-key.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/android/app/my-release-key.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/index.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/android/app/src/main/assets/index.android.bundle -------------------------------------------------------------------------------- /android/app/src/main/java/com/fooddelivery/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/android/app/src/main/java/com/fooddelivery/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/fooddelivery/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/android/app/src/main/java/com/fooddelivery/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'foodDelivery' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/components/App.js -------------------------------------------------------------------------------- /components/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/components/Cart.js -------------------------------------------------------------------------------- /components/ConfirmOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/components/ConfirmOrder.js -------------------------------------------------------------------------------- /components/DashBoard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/components/DashBoard.js -------------------------------------------------------------------------------- /components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/components/Home.js -------------------------------------------------------------------------------- /components/HotDeals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/components/HotDeals.js -------------------------------------------------------------------------------- /components/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/components/Menu.js -------------------------------------------------------------------------------- /components/Notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/components/Notifications.js -------------------------------------------------------------------------------- /components/PastOrders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/components/PastOrders.js -------------------------------------------------------------------------------- /components/ReviewOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/components/ReviewOrder.js -------------------------------------------------------------------------------- /components/images/drawer_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/components/images/drawer_screenshot.png -------------------------------------------------------------------------------- /components/images/ic_menu_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/components/images/ic_menu_black_24dp.png -------------------------------------------------------------------------------- /components/images/menu_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/components/images/menu_screenshot.png -------------------------------------------------------------------------------- /helpers/ActionButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/helpers/ActionButton.js -------------------------------------------------------------------------------- /helpers/ActionButtonItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/helpers/ActionButtonItem.js -------------------------------------------------------------------------------- /helpers/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/helpers/navigation.js -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/foodDelivery.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/ios/foodDelivery.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/foodDelivery.xcodeproj/xcshareddata/xcschemes/foodDelivery.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/ios/foodDelivery.xcodeproj/xcshareddata/xcschemes/foodDelivery.xcscheme -------------------------------------------------------------------------------- /ios/foodDelivery/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/ios/foodDelivery/AppDelegate.h -------------------------------------------------------------------------------- /ios/foodDelivery/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/ios/foodDelivery/AppDelegate.m -------------------------------------------------------------------------------- /ios/foodDelivery/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/ios/foodDelivery/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/foodDelivery/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/ios/foodDelivery/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/foodDelivery/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/ios/foodDelivery/Info.plist -------------------------------------------------------------------------------- /ios/foodDelivery/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/ios/foodDelivery/main.m -------------------------------------------------------------------------------- /ios/foodDeliveryTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/ios/foodDeliveryTests/Info.plist -------------------------------------------------------------------------------- /ios/foodDeliveryTests/foodDeliveryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/ios/foodDeliveryTests/foodDeliveryTests.m -------------------------------------------------------------------------------- /my-release-key.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/my-release-key.keystore -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/package.json -------------------------------------------------------------------------------- /styles/hotdeals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/styles/hotdeals.js -------------------------------------------------------------------------------- /styles/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/styles/menu.js -------------------------------------------------------------------------------- /styles/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Food_Delivery_ReactNative/HEAD/styles/root.js --------------------------------------------------------------------------------