├── .buckconfig ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── README.md ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── gomarketplace │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── gomarketplace │ │ │ ├── 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 └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios ├── GoMarketplace-tvOS │ └── Info.plist ├── GoMarketplace-tvOSTests │ └── Info.plist ├── GoMarketplace.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── GoMarketplace-tvOS.xcscheme │ │ └── GoMarketplace.xcscheme ├── GoMarketplace.xcworkspace │ └── contents.xcworkspacedata ├── GoMarketplace │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── GoMarketplaceTests │ ├── GoMarketplaceTests.m │ └── Info.plist ├── Podfile └── Podfile.lock ├── jest.config.js ├── jest.setup.js ├── metro.config.js ├── package.json ├── prettier.config.js ├── react-native.config.js ├── server.json ├── src ├── @types │ └── index.d.ts ├── __mocks__ │ ├── back-icon.png │ └── fileMock.ts ├── __tests__ │ ├── components │ │ └── FloatingCart.tsx │ ├── hooks │ │ └── cart.spec.tsx │ └── pages │ │ ├── App.spec.tsx │ │ └── Cart.spec.tsx ├── assets │ ├── logo.png │ ├── logo@2x.png │ └── logo@3x.png ├── components │ └── FloatingCart │ │ ├── index.tsx │ │ └── styles.ts ├── hooks │ ├── cart.tsx │ └── index.tsx ├── index.tsx ├── pages │ ├── Cart │ │ ├── index.tsx │ │ └── styles.ts │ └── Dashboard │ │ ├── index.tsx │ │ └── styles.ts ├── routes │ ├── app.routes.tsx │ └── index.tsx ├── services │ └── api.ts └── utils │ └── formatValue.ts ├── tsconfig.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/.buckconfig -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | **/*.js 2 | node_modules 3 | build 4 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/README.md -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/gomarketplace/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/app/src/debug/java/com/gomarketplace/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/gomarketplace/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/app/src/main/java/com/gomarketplace/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/gomarketplace/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/app/src/main/java/com/gomarketplace/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/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/gostack-template-fundamentos-react-native/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/index.js -------------------------------------------------------------------------------- /ios/GoMarketplace-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/ios/GoMarketplace-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/GoMarketplace-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/ios/GoMarketplace-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/GoMarketplace.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/ios/GoMarketplace.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/GoMarketplace.xcodeproj/xcshareddata/xcschemes/GoMarketplace-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/ios/GoMarketplace.xcodeproj/xcshareddata/xcschemes/GoMarketplace-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/GoMarketplace.xcodeproj/xcshareddata/xcschemes/GoMarketplace.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/ios/GoMarketplace.xcodeproj/xcshareddata/xcschemes/GoMarketplace.xcscheme -------------------------------------------------------------------------------- /ios/GoMarketplace.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/ios/GoMarketplace.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/GoMarketplace/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/ios/GoMarketplace/AppDelegate.h -------------------------------------------------------------------------------- /ios/GoMarketplace/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/ios/GoMarketplace/AppDelegate.m -------------------------------------------------------------------------------- /ios/GoMarketplace/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/ios/GoMarketplace/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/GoMarketplace/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/ios/GoMarketplace/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/GoMarketplace/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/ios/GoMarketplace/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/GoMarketplace/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/ios/GoMarketplace/Info.plist -------------------------------------------------------------------------------- /ios/GoMarketplace/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/ios/GoMarketplace/main.m -------------------------------------------------------------------------------- /ios/GoMarketplaceTests/GoMarketplaceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/ios/GoMarketplaceTests/GoMarketplaceTests.m -------------------------------------------------------------------------------- /ios/GoMarketplaceTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/ios/GoMarketplaceTests/Info.plist -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/jest.setup.js -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/prettier.config.js -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/react-native.config.js -------------------------------------------------------------------------------- /server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/server.json -------------------------------------------------------------------------------- /src/@types/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.png'; 2 | -------------------------------------------------------------------------------- /src/__mocks__/back-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/__mocks__/fileMock.ts: -------------------------------------------------------------------------------- 1 | export default ''; 2 | -------------------------------------------------------------------------------- /src/__tests__/components/FloatingCart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/src/__tests__/components/FloatingCart.tsx -------------------------------------------------------------------------------- /src/__tests__/hooks/cart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/src/__tests__/hooks/cart.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/pages/App.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/src/__tests__/pages/App.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/pages/Cart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/src/__tests__/pages/Cart.spec.tsx -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/src/assets/logo@2x.png -------------------------------------------------------------------------------- /src/assets/logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/src/assets/logo@3x.png -------------------------------------------------------------------------------- /src/components/FloatingCart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/src/components/FloatingCart/index.tsx -------------------------------------------------------------------------------- /src/components/FloatingCart/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/src/components/FloatingCart/styles.ts -------------------------------------------------------------------------------- /src/hooks/cart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/src/hooks/cart.tsx -------------------------------------------------------------------------------- /src/hooks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/src/hooks/index.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/pages/Cart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/src/pages/Cart/index.tsx -------------------------------------------------------------------------------- /src/pages/Cart/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/src/pages/Cart/styles.ts -------------------------------------------------------------------------------- /src/pages/Dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/src/pages/Dashboard/index.tsx -------------------------------------------------------------------------------- /src/pages/Dashboard/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/src/pages/Dashboard/styles.ts -------------------------------------------------------------------------------- /src/routes/app.routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/src/routes/app.routes.tsx -------------------------------------------------------------------------------- /src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/src/routes/index.tsx -------------------------------------------------------------------------------- /src/services/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/src/services/api.ts -------------------------------------------------------------------------------- /src/utils/formatValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/src/utils/formatValue.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/gostack-template-fundamentos-react-native/HEAD/yarn.lock --------------------------------------------------------------------------------