├── .buckconfig ├── .editorconfig ├── .env.example ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── README.md ├── __tests__ └── App-test.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── AntDesign.ttf │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── pizzadelivery │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── drawable │ │ └── background_splash.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ic_splash.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ic_splash.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ic_splash.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ic_splash.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ic_splash.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 ├── babel.config.js ├── index.js ├── ios ├── PizzaDelivery-tvOS │ └── Info.plist ├── PizzaDelivery-tvOSTests │ └── Info.plist ├── PizzaDelivery.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── PizzaDelivery-tvOS.xcscheme │ │ └── PizzaDelivery.xcscheme ├── PizzaDelivery │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── PizzaDeliveryTests │ ├── Info.plist │ └── PizzaDeliveryTests.m └── Podfile ├── metro.config.js ├── package.json ├── screenshots ├── cart.jpg ├── categories.jpg ├── login.jpg ├── order-detail.jpg ├── order.jpg ├── products.jpg ├── profile.jpg ├── register.jpg └── sizes.jpg ├── src ├── App.js ├── assets │ └── images │ │ ├── fundo.jpg │ │ ├── header-background.png │ │ ├── header-background2x.png │ │ ├── header-background3x.png │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── logo2x.png │ │ ├── logo3x.png │ │ └── placeholder.png ├── components │ ├── BackButton │ │ └── index.js │ ├── CartTotal │ │ └── index.js │ ├── Image │ │ └── index.js │ ├── LoadingIndicator │ │ └── index.js │ ├── MainHeader │ │ ├── index.js │ │ └── styles.js │ └── OrderModal │ │ ├── index.js │ │ └── styles.js ├── config │ ├── reactotron-config.js │ └── redux-persist-config.js ├── index.js ├── pages │ ├── Auth │ │ ├── SignIn │ │ │ └── index.js │ │ ├── SignUp │ │ │ └── index.js │ │ └── styles.js │ ├── Cart │ │ ├── index.js │ │ └── styles.js │ ├── Main │ │ ├── index.js │ │ └── styles.js │ ├── Order │ │ ├── index.js │ │ └── styles.js │ ├── Products │ │ ├── index.js │ │ └── styles.js │ ├── Profile │ │ ├── index.js │ │ └── styles.js │ └── Sizes │ │ ├── index.js │ │ └── styles.js ├── routes.js ├── services │ ├── api.js │ └── currency.js ├── store │ ├── create-store.js │ ├── ducks │ │ ├── auth.js │ │ ├── cart.js │ │ └── index.js │ ├── index.js │ ├── persist-reducers.js │ └── sagas │ │ ├── auth.js │ │ └── index.js └── styles │ └── index.js └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/.buckconfig -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/.env.example -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/pizzadelivery/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/java/com/pizzadelivery/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/pizzadelivery/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/java/com/pizzadelivery/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/background_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/res/drawable/background_splash.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_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/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/res/mipmap-hdpi/ic_splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_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/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/res/mipmap-mdpi/ic_splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_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/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_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/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_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/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/index.js -------------------------------------------------------------------------------- /ios/PizzaDelivery-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/ios/PizzaDelivery-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/PizzaDelivery-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/ios/PizzaDelivery-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/PizzaDelivery.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/ios/PizzaDelivery.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/PizzaDelivery.xcodeproj/xcshareddata/xcschemes/PizzaDelivery-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/ios/PizzaDelivery.xcodeproj/xcshareddata/xcschemes/PizzaDelivery-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/PizzaDelivery.xcodeproj/xcshareddata/xcschemes/PizzaDelivery.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/ios/PizzaDelivery.xcodeproj/xcshareddata/xcschemes/PizzaDelivery.xcscheme -------------------------------------------------------------------------------- /ios/PizzaDelivery/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/ios/PizzaDelivery/AppDelegate.h -------------------------------------------------------------------------------- /ios/PizzaDelivery/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/ios/PizzaDelivery/AppDelegate.m -------------------------------------------------------------------------------- /ios/PizzaDelivery/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/ios/PizzaDelivery/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/PizzaDelivery/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/ios/PizzaDelivery/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/PizzaDelivery/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/ios/PizzaDelivery/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/PizzaDelivery/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/ios/PizzaDelivery/Info.plist -------------------------------------------------------------------------------- /ios/PizzaDelivery/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/ios/PizzaDelivery/main.m -------------------------------------------------------------------------------- /ios/PizzaDeliveryTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/ios/PizzaDeliveryTests/Info.plist -------------------------------------------------------------------------------- /ios/PizzaDeliveryTests/PizzaDeliveryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/ios/PizzaDeliveryTests/PizzaDeliveryTests.m -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/ios/Podfile -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/cart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/screenshots/cart.jpg -------------------------------------------------------------------------------- /screenshots/categories.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/screenshots/categories.jpg -------------------------------------------------------------------------------- /screenshots/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/screenshots/login.jpg -------------------------------------------------------------------------------- /screenshots/order-detail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/screenshots/order-detail.jpg -------------------------------------------------------------------------------- /screenshots/order.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/screenshots/order.jpg -------------------------------------------------------------------------------- /screenshots/products.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/screenshots/products.jpg -------------------------------------------------------------------------------- /screenshots/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/screenshots/profile.jpg -------------------------------------------------------------------------------- /screenshots/register.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/screenshots/register.jpg -------------------------------------------------------------------------------- /screenshots/sizes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/screenshots/sizes.jpg -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/App.js -------------------------------------------------------------------------------- /src/assets/images/fundo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/assets/images/fundo.jpg -------------------------------------------------------------------------------- /src/assets/images/header-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/assets/images/header-background.png -------------------------------------------------------------------------------- /src/assets/images/header-background2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/assets/images/header-background2x.png -------------------------------------------------------------------------------- /src/assets/images/header-background3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/assets/images/header-background3x.png -------------------------------------------------------------------------------- /src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/assets/images/logo.png -------------------------------------------------------------------------------- /src/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/assets/images/logo.svg -------------------------------------------------------------------------------- /src/assets/images/logo2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/assets/images/logo2x.png -------------------------------------------------------------------------------- /src/assets/images/logo3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/assets/images/logo3x.png -------------------------------------------------------------------------------- /src/assets/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/assets/images/placeholder.png -------------------------------------------------------------------------------- /src/components/BackButton/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/components/BackButton/index.js -------------------------------------------------------------------------------- /src/components/CartTotal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/components/CartTotal/index.js -------------------------------------------------------------------------------- /src/components/Image/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/components/Image/index.js -------------------------------------------------------------------------------- /src/components/LoadingIndicator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/components/LoadingIndicator/index.js -------------------------------------------------------------------------------- /src/components/MainHeader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/components/MainHeader/index.js -------------------------------------------------------------------------------- /src/components/MainHeader/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/components/MainHeader/styles.js -------------------------------------------------------------------------------- /src/components/OrderModal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/components/OrderModal/index.js -------------------------------------------------------------------------------- /src/components/OrderModal/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/components/OrderModal/styles.js -------------------------------------------------------------------------------- /src/config/reactotron-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/config/reactotron-config.js -------------------------------------------------------------------------------- /src/config/redux-persist-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/config/redux-persist-config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/Auth/SignIn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/pages/Auth/SignIn/index.js -------------------------------------------------------------------------------- /src/pages/Auth/SignUp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/pages/Auth/SignUp/index.js -------------------------------------------------------------------------------- /src/pages/Auth/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/pages/Auth/styles.js -------------------------------------------------------------------------------- /src/pages/Cart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/pages/Cart/index.js -------------------------------------------------------------------------------- /src/pages/Cart/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/pages/Cart/styles.js -------------------------------------------------------------------------------- /src/pages/Main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/pages/Main/index.js -------------------------------------------------------------------------------- /src/pages/Main/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/pages/Main/styles.js -------------------------------------------------------------------------------- /src/pages/Order/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/pages/Order/index.js -------------------------------------------------------------------------------- /src/pages/Order/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/pages/Order/styles.js -------------------------------------------------------------------------------- /src/pages/Products/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/pages/Products/index.js -------------------------------------------------------------------------------- /src/pages/Products/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/pages/Products/styles.js -------------------------------------------------------------------------------- /src/pages/Profile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/pages/Profile/index.js -------------------------------------------------------------------------------- /src/pages/Profile/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/pages/Profile/styles.js -------------------------------------------------------------------------------- /src/pages/Sizes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/pages/Sizes/index.js -------------------------------------------------------------------------------- /src/pages/Sizes/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/pages/Sizes/styles.js -------------------------------------------------------------------------------- /src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/routes.js -------------------------------------------------------------------------------- /src/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/services/api.js -------------------------------------------------------------------------------- /src/services/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/services/currency.js -------------------------------------------------------------------------------- /src/store/create-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/store/create-store.js -------------------------------------------------------------------------------- /src/store/ducks/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/store/ducks/auth.js -------------------------------------------------------------------------------- /src/store/ducks/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/store/ducks/cart.js -------------------------------------------------------------------------------- /src/store/ducks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/store/ducks/index.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/persist-reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/store/persist-reducers.js -------------------------------------------------------------------------------- /src/store/sagas/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/store/sagas/auth.js -------------------------------------------------------------------------------- /src/store/sagas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/store/sagas/index.js -------------------------------------------------------------------------------- /src/styles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/src/styles/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaioQuirinoMedeiros/delivery_app/HEAD/yarn.lock --------------------------------------------------------------------------------