├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── pizzapp │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── logo.jpg │ │ ├── drawable-ldpi │ │ └── logo.jpg │ │ ├── drawable-mdpi │ │ └── logo.jpg │ │ ├── drawable-xhdpi │ │ └── logo.jpg │ │ ├── drawable-xxhdpi │ │ └── logo.jpg │ │ ├── drawable-xxxhdpi │ │ └── logo.jpg │ │ ├── layout │ │ └── launch_screen.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── colors.xml │ │ ├── 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 ├── app.json ├── app ├── App.js ├── components │ ├── general │ │ └── Header.js │ ├── library │ │ ├── AmountCounter.js │ │ ├── GeneralDialog.js │ │ ├── ImageContent.js │ │ └── RNCameraExtended.js │ ├── navigator │ │ └── BottomTabNavigator.js │ └── screen │ │ ├── auth │ │ ├── ScreenLogin.js │ │ └── ScreenRegistration.js │ │ ├── camera │ │ └── ScreenCamera.js │ │ ├── cart │ │ ├── CartProduct.js │ │ └── ScreenCart.js │ │ ├── home │ │ └── ScreenHome.js │ │ └── menu │ │ ├── ListProducts.js │ │ ├── Product.js │ │ ├── ProductDialog.js │ │ └── ScreenListMenu.js ├── images │ ├── camera_shutter.png │ ├── flat1.jpg │ ├── flat2.jpg │ ├── flat3.jpg │ ├── maxresdefault.jpg │ ├── nav_button_home.png │ ├── nav_button_menu.png │ ├── nav_button_orders.png │ └── sample.jpg ├── styles │ └── common.js └── utils │ └── ImageAssets.js ├── index.js ├── ios ├── pizzapp-tvOS │ └── Info.plist ├── pizzapp-tvOSTests │ └── Info.plist ├── pizzapp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── pizzapp-tvOS.xcscheme │ │ └── pizzapp.xcscheme ├── pizzapp │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── pizzappTests │ ├── Info.plist │ └── pizzappTests.m ├── package.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/pizzapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/android/app/src/main/java/com/pizzapp/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/pizzapp/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/android/app/src/main/java/com/pizzapp/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/android/app/src/main/res/drawable-hdpi/logo.jpg -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-ldpi/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/android/app/src/main/res/drawable-ldpi/logo.jpg -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/android/app/src/main/res/drawable-mdpi/logo.jpg -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/android/app/src/main/res/drawable-xhdpi/logo.jpg -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/android/app/src/main/res/drawable-xxhdpi/logo.jpg -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/android/app/src/main/res/drawable-xxxhdpi/logo.jpg -------------------------------------------------------------------------------- /android/app/src/main/res/layout/launch_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/android/app/src/main/res/layout/launch_screen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/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/fabnicolas/react-native-food-delivery/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/fabnicolas/react-native-food-delivery/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/fabnicolas/react-native-food-delivery/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app.json -------------------------------------------------------------------------------- /app/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/App.js -------------------------------------------------------------------------------- /app/components/general/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/components/general/Header.js -------------------------------------------------------------------------------- /app/components/library/AmountCounter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/components/library/AmountCounter.js -------------------------------------------------------------------------------- /app/components/library/GeneralDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/components/library/GeneralDialog.js -------------------------------------------------------------------------------- /app/components/library/ImageContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/components/library/ImageContent.js -------------------------------------------------------------------------------- /app/components/library/RNCameraExtended.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/components/library/RNCameraExtended.js -------------------------------------------------------------------------------- /app/components/navigator/BottomTabNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/components/navigator/BottomTabNavigator.js -------------------------------------------------------------------------------- /app/components/screen/auth/ScreenLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/components/screen/auth/ScreenLogin.js -------------------------------------------------------------------------------- /app/components/screen/auth/ScreenRegistration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/components/screen/auth/ScreenRegistration.js -------------------------------------------------------------------------------- /app/components/screen/camera/ScreenCamera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/components/screen/camera/ScreenCamera.js -------------------------------------------------------------------------------- /app/components/screen/cart/CartProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/components/screen/cart/CartProduct.js -------------------------------------------------------------------------------- /app/components/screen/cart/ScreenCart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/components/screen/cart/ScreenCart.js -------------------------------------------------------------------------------- /app/components/screen/home/ScreenHome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/components/screen/home/ScreenHome.js -------------------------------------------------------------------------------- /app/components/screen/menu/ListProducts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/components/screen/menu/ListProducts.js -------------------------------------------------------------------------------- /app/components/screen/menu/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/components/screen/menu/Product.js -------------------------------------------------------------------------------- /app/components/screen/menu/ProductDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/components/screen/menu/ProductDialog.js -------------------------------------------------------------------------------- /app/components/screen/menu/ScreenListMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/components/screen/menu/ScreenListMenu.js -------------------------------------------------------------------------------- /app/images/camera_shutter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/images/camera_shutter.png -------------------------------------------------------------------------------- /app/images/flat1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/images/flat1.jpg -------------------------------------------------------------------------------- /app/images/flat2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/images/flat2.jpg -------------------------------------------------------------------------------- /app/images/flat3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/images/flat3.jpg -------------------------------------------------------------------------------- /app/images/maxresdefault.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/images/maxresdefault.jpg -------------------------------------------------------------------------------- /app/images/nav_button_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/images/nav_button_home.png -------------------------------------------------------------------------------- /app/images/nav_button_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/images/nav_button_menu.png -------------------------------------------------------------------------------- /app/images/nav_button_orders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/images/nav_button_orders.png -------------------------------------------------------------------------------- /app/images/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/images/sample.jpg -------------------------------------------------------------------------------- /app/styles/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/styles/common.js -------------------------------------------------------------------------------- /app/utils/ImageAssets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/app/utils/ImageAssets.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/index.js -------------------------------------------------------------------------------- /ios/pizzapp-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/ios/pizzapp-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/pizzapp-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/ios/pizzapp-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/pizzapp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/ios/pizzapp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/pizzapp.xcodeproj/xcshareddata/xcschemes/pizzapp-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/ios/pizzapp.xcodeproj/xcshareddata/xcschemes/pizzapp-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/pizzapp.xcodeproj/xcshareddata/xcschemes/pizzapp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/ios/pizzapp.xcodeproj/xcshareddata/xcschemes/pizzapp.xcscheme -------------------------------------------------------------------------------- /ios/pizzapp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/ios/pizzapp/AppDelegate.h -------------------------------------------------------------------------------- /ios/pizzapp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/ios/pizzapp/AppDelegate.m -------------------------------------------------------------------------------- /ios/pizzapp/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/ios/pizzapp/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/pizzapp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/ios/pizzapp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/pizzapp/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/ios/pizzapp/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/pizzapp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/ios/pizzapp/Info.plist -------------------------------------------------------------------------------- /ios/pizzapp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/ios/pizzapp/main.m -------------------------------------------------------------------------------- /ios/pizzappTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/ios/pizzappTests/Info.plist -------------------------------------------------------------------------------- /ios/pizzappTests/pizzappTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/ios/pizzappTests/pizzappTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabnicolas/react-native-food-delivery/HEAD/yarn.lock --------------------------------------------------------------------------------