├── .buckconfig ├── .editorconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc ├── .watchmanconfig ├── LICENSE.md ├── README.md ├── __tests__ └── App-test.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── 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 │ │ │ ├── Fontisto.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── rocketshoes │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── api.json ├── app.json ├── assets-desafio ├── Cart.pdf ├── Cart.png ├── Home.pdf ├── Home.png └── layout.sketch ├── babel.config.js ├── index.js ├── ios ├── rocketshoes-tvOS │ └── Info.plist ├── rocketshoes-tvOSTests │ └── Info.plist ├── rocketshoes.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── rocketshoes-tvOS.xcscheme │ │ └── rocketshoes.xcscheme ├── rocketshoes │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── rocketshoesTests │ ├── Info.plist │ └── rocketshoesTests.m ├── metro.config.js ├── package.json ├── src ├── assets │ ├── logo.png │ ├── logo@2x.png │ └── logo@3x.png ├── components │ └── Header │ │ ├── index.js │ │ └── styles.js ├── config │ └── ReactotronConfig.js ├── index.js ├── pages │ ├── Cart │ │ ├── index.js │ │ └── styles.js │ └── Main │ │ ├── index.js │ │ └── styles.js ├── routes.js ├── services │ ├── api.js │ └── navigation.js ├── store │ ├── index.js │ └── modules │ │ ├── cart │ │ ├── actions.js │ │ ├── reducer.js │ │ └── sagas.js │ │ ├── rootReducer.js │ │ └── rootSaga.js ├── styles │ └── colors.js └── util │ └── format.js └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/.buckconfig -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/.prettierrc -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Fontisto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/assets/fonts/Fontisto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/rocketshoes/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/java/com/rocketshoes/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rocketshoes/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/java/com/rocketshoes/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/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/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/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/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/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/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/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/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/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/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/api.json -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/app.json -------------------------------------------------------------------------------- /assets-desafio/Cart.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/assets-desafio/Cart.pdf -------------------------------------------------------------------------------- /assets-desafio/Cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/assets-desafio/Cart.png -------------------------------------------------------------------------------- /assets-desafio/Home.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/assets-desafio/Home.pdf -------------------------------------------------------------------------------- /assets-desafio/Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/assets-desafio/Home.png -------------------------------------------------------------------------------- /assets-desafio/layout.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/assets-desafio/layout.sketch -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/index.js -------------------------------------------------------------------------------- /ios/rocketshoes-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/ios/rocketshoes-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/rocketshoes-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/ios/rocketshoes-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/rocketshoes.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/ios/rocketshoes.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/rocketshoes.xcodeproj/xcshareddata/xcschemes/rocketshoes-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/ios/rocketshoes.xcodeproj/xcshareddata/xcschemes/rocketshoes-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/rocketshoes.xcodeproj/xcshareddata/xcschemes/rocketshoes.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/ios/rocketshoes.xcodeproj/xcshareddata/xcschemes/rocketshoes.xcscheme -------------------------------------------------------------------------------- /ios/rocketshoes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/ios/rocketshoes/AppDelegate.h -------------------------------------------------------------------------------- /ios/rocketshoes/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/ios/rocketshoes/AppDelegate.m -------------------------------------------------------------------------------- /ios/rocketshoes/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/ios/rocketshoes/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/rocketshoes/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/ios/rocketshoes/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/rocketshoes/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/ios/rocketshoes/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/rocketshoes/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/ios/rocketshoes/Info.plist -------------------------------------------------------------------------------- /ios/rocketshoes/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/ios/rocketshoes/main.m -------------------------------------------------------------------------------- /ios/rocketshoesTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/ios/rocketshoesTests/Info.plist -------------------------------------------------------------------------------- /ios/rocketshoesTests/rocketshoesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/ios/rocketshoesTests/rocketshoesTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/src/assets/logo@2x.png -------------------------------------------------------------------------------- /src/assets/logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/src/assets/logo@3x.png -------------------------------------------------------------------------------- /src/components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/src/components/Header/index.js -------------------------------------------------------------------------------- /src/components/Header/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/src/components/Header/styles.js -------------------------------------------------------------------------------- /src/config/ReactotronConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/src/config/ReactotronConfig.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/Cart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/src/pages/Cart/index.js -------------------------------------------------------------------------------- /src/pages/Cart/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/src/pages/Cart/styles.js -------------------------------------------------------------------------------- /src/pages/Main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/src/pages/Main/index.js -------------------------------------------------------------------------------- /src/pages/Main/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/src/pages/Main/styles.js -------------------------------------------------------------------------------- /src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/src/routes.js -------------------------------------------------------------------------------- /src/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/src/services/api.js -------------------------------------------------------------------------------- /src/services/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/src/services/navigation.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/modules/cart/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/src/store/modules/cart/actions.js -------------------------------------------------------------------------------- /src/store/modules/cart/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/src/store/modules/cart/reducer.js -------------------------------------------------------------------------------- /src/store/modules/cart/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/src/store/modules/cart/sagas.js -------------------------------------------------------------------------------- /src/store/modules/rootReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/src/store/modules/rootReducer.js -------------------------------------------------------------------------------- /src/store/modules/rootSaga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/src/store/modules/rootSaga.js -------------------------------------------------------------------------------- /src/styles/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/src/styles/colors.js -------------------------------------------------------------------------------- /src/util/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/src/util/format.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/bootcamp-gostack-desafio-08/HEAD/yarn.lock --------------------------------------------------------------------------------