├── 2022 ├── Calculator │ ├── .buckconfig │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .flowconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .prettierrc.js │ ├── .watchmanconfig │ ├── App.js │ ├── __tests__ │ │ └── App-test.js │ ├── android │ │ ├── app │ │ │ ├── _BUCK │ │ │ ├── build.gradle │ │ │ ├── build_defs.bzl │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── calculator │ │ │ │ │ └── ReactNativeFlipper.java │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── calculator │ │ │ │ │ ├── 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 │ │ ├── Calculator.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Calculator.xcscheme │ │ ├── Calculator │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── main.m │ │ ├── CalculatorTests │ │ │ ├── CalculatorTests.m │ │ │ └── Info.plist │ │ └── Podfile │ ├── metro.config.js │ ├── package-lock.json │ ├── package.json │ └── src │ │ └── components │ │ ├── Button.js │ │ └── Display.js ├── InstaClone │ ├── .buckconfig │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .firebaserc │ ├── .flowconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .prettierrc.js │ ├── .watchmanconfig │ ├── App.js │ ├── Readme.md │ ├── __tests__ │ │ └── App-test.js │ ├── android │ │ ├── app │ │ │ ├── _BUCK │ │ │ ├── build.gradle │ │ │ ├── build_defs.bzl │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── instaclone │ │ │ │ │ └── ReactNativeFlipper.java │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── assets │ │ │ │ └── fonts │ │ │ │ │ └── shelter.otf │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── instaclone │ │ │ │ │ ├── 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 │ ├── assets │ │ ├── fonts │ │ │ └── shelter.otf │ │ └── imgs │ │ │ ├── boat.jpg │ │ │ ├── bw.jpg │ │ │ ├── fence.jpg │ │ │ ├── gate.jpg │ │ │ └── icon.png │ ├── babel.config.js │ ├── firebase.json │ ├── functions │ │ ├── .gitignore │ │ ├── index.js │ │ ├── instaclone-b78e8.json │ │ ├── package-lock.json │ │ ├── package.json │ │ └── yarn.lock │ ├── index.js │ ├── ios │ │ ├── InstaClone.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── InstaClone.xcscheme │ │ ├── InstaClone │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── main.m │ │ ├── InstaCloneTests │ │ │ ├── Info.plist │ │ │ └── InstaCloneTests.m │ │ └── Podfile │ ├── metro.config.js │ ├── package.json │ ├── react-native.config.js │ ├── src │ │ ├── App.js │ │ ├── Navigator.js │ │ ├── componentes │ │ │ ├── AddComment.js │ │ │ ├── Author.js │ │ │ ├── Comments.js │ │ │ ├── Header.js │ │ │ └── Post.js │ │ ├── data │ │ │ ├── contexts │ │ │ │ ├── EventContext.js │ │ │ │ ├── FeedContext.js │ │ │ │ └── UserContext.js │ │ │ └── hooks │ │ │ │ ├── useEvent.js │ │ │ │ ├── useFeed.js │ │ │ │ └── useUser.js │ │ ├── hooks │ │ │ ├── UseEffectIf.js │ │ │ └── UseEffectIfNot.js │ │ └── screens │ │ │ ├── AddPhoto.js │ │ │ ├── Feed.js │ │ │ ├── Login.js │ │ │ ├── Profile.js │ │ │ ├── Register.js │ │ │ └── Splash.js │ └── yarn.lock ├── Mines │ ├── .buckconfig │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .flowconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .prettierrc.js │ ├── .watchmanconfig │ ├── App.js │ ├── __tests__ │ │ └── App-test.js │ ├── android │ │ ├── app │ │ │ ├── _BUCK │ │ │ ├── build.gradle │ │ │ ├── build_defs.bzl │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── mines │ │ │ │ │ └── ReactNativeFlipper.java │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── mines │ │ │ │ │ ├── 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 │ │ ├── Mines.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Mines.xcscheme │ │ ├── Mines │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── main.m │ │ ├── MinesTests │ │ │ ├── Info.plist │ │ │ └── MinesTests.m │ │ └── Podfile │ ├── metro.config.js │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── components │ │ ├── Field.js │ │ ├── Flag.js │ │ ├── Header.js │ │ ├── Mine.js │ │ └── MineField.js │ │ ├── functions.js │ │ ├── params.js │ │ └── screens │ │ └── LevelSelection.js ├── Navigation │ ├── .buckconfig │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .flowconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .prettierrc.js │ ├── .watchmanconfig │ ├── App.js │ ├── Readme.md │ ├── __tests__ │ │ └── App-test.js │ ├── android │ │ ├── app │ │ │ ├── _BUCK │ │ │ ├── build.gradle │ │ │ ├── build_defs.bzl │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── navigation │ │ │ │ │ └── ReactNativeFlipper.java │ │ │ │ └── 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 │ │ │ │ │ └── navigation │ │ │ │ │ ├── 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 │ │ ├── Navigation.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Navigation.xcscheme │ │ ├── Navigation │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── main.m │ │ ├── NavigationTests │ │ │ ├── Info.plist │ │ │ └── NavigationTests.m │ │ └── Podfile │ ├── metro.config.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.js │ │ ├── components │ │ │ ├── PassoStack.js │ │ │ └── TextoCentral.js │ │ ├── navegacao │ │ │ ├── Drawer.js │ │ │ ├── Stack.js │ │ │ ├── Tab.js │ │ │ └── index.js │ │ └── views │ │ │ ├── TelaA.js │ │ │ ├── TelaB.js │ │ │ ├── TelaC.js │ │ │ └── TelaD.js │ └── yarn.lock ├── Tasks │ ├── .buckconfig │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .flowconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .prettierrc.js │ ├── .watchmanconfig │ ├── __tests__ │ │ └── App-test.js │ ├── android │ │ ├── app │ │ │ ├── _BUCK │ │ │ ├── build.gradle │ │ │ ├── build_defs.bzl │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── tasks │ │ │ │ │ └── ReactNativeFlipper.java │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── tasks │ │ │ │ │ ├── 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 │ ├── assets │ │ ├── fonts │ │ │ └── Lato.ttf │ │ └── imgs │ │ │ ├── login.jpg │ │ │ ├── month.jpg │ │ │ ├── today.jpg │ │ │ ├── tomorrow.jpg │ │ │ └── week.jpg │ ├── babel.config.js │ ├── index.js │ ├── index.md │ ├── ios │ │ ├── Podfile │ │ ├── Tasks.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Tasks.xcscheme │ │ ├── Tasks │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── main.m │ │ └── TasksTests │ │ │ ├── Info.plist │ │ │ └── TasksTests.m │ ├── metro.config.js │ ├── package.json │ ├── react-native.config.js │ ├── src │ │ ├── Navigator.js │ │ ├── common.js │ │ ├── commonStyles.js │ │ ├── components │ │ │ ├── AuthInput.js │ │ │ └── Task.js │ │ └── screens │ │ │ ├── AddTask.js │ │ │ ├── Auth.js │ │ │ ├── AuthOrApp.js │ │ │ ├── Menu.js │ │ │ └── TaskList.js │ └── yarn.lock ├── UserCrud │ ├── .buckconfig │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .flowconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .prettierrc.js │ ├── .watchmanconfig │ ├── Readme.md │ ├── __tests__ │ │ └── App-test.js │ ├── android │ │ ├── app │ │ │ ├── _BUCK │ │ │ ├── build.gradle │ │ │ ├── build_defs.bzl │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── usercrud │ │ │ │ │ └── ReactNativeFlipper.java │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── usercrud │ │ │ │ │ ├── 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 │ │ ├── Podfile │ │ ├── UserCrud.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── UserCrud.xcscheme │ │ ├── UserCrud │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── main.m │ │ └── UserCrudTests │ │ │ ├── Info.plist │ │ │ └── UserCrudTests.m │ ├── metro.config.js │ ├── package.json │ ├── src │ │ ├── App.js │ │ ├── context │ │ │ └── UsersContext.js │ │ ├── data │ │ │ └── users.js │ │ └── views │ │ │ ├── UserForm.js │ │ │ └── UserList.js │ └── yarn.lock └── tasks-backend │ ├── .gitignore │ ├── api │ ├── auth.js │ ├── task.js │ └── user.js │ ├── config │ ├── db.js │ ├── middlewares.js │ ├── passport.js │ └── routes.js │ ├── env_file │ ├── index.js │ ├── knexfile.js │ ├── migrations │ ├── 20180830152716_create_table_users.js │ └── 20180830152747_create_table_tasks.js │ ├── package-lock.json │ ├── package.json │ └── yarn.lock ├── .gitignore ├── Componentes ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── componentes-key.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── Entypo.ttf │ │ │ │ ├── EvilIcons.ttf │ │ │ │ ├── Feather.ttf │ │ │ │ ├── FontAwesome.ttf │ │ │ │ ├── Foundation.ttf │ │ │ │ ├── Ionicons.ttf │ │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ ├── Octicons.ttf │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ └── Zocial.ttf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── componentes │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── assets │ ├── ba.jpg │ ├── clique-aqui.png │ ├── cookie.jpg │ ├── df.jpg │ ├── fortaleza.jpg │ ├── pimenta.jpg │ ├── pipoca.jpg │ ├── pr.jpg │ ├── rj.jpg │ └── sp.jpg ├── index.js ├── ios │ ├── Componentes-tvOS │ │ └── Info.plist │ ├── Componentes-tvOSTests │ │ └── Info.plist │ ├── Componentes.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Componentes-tvOS.xcscheme │ │ │ └── Componentes.xcscheme │ ├── Componentes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── ComponentesTests │ │ ├── ComponentesTests.m │ │ └── Info.plist ├── package.json ├── src │ ├── components │ │ └── DateTimeIOS.js │ └── view │ │ ├── Accordion.js │ │ ├── Bandeira.js │ │ ├── Click.js │ │ ├── DragList.js │ │ ├── FlexBoxTests.js │ │ ├── Formulario.js │ │ ├── Menu.js │ │ ├── Swipe.js │ │ ├── SwipeList.js │ │ └── Tabs.js └── yarn.lock ├── README.md ├── Updates.md ├── calculator ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── calculator │ │ │ │ ├── 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 ├── app.json ├── index.js ├── ios │ ├── calculator-tvOS │ │ └── Info.plist │ ├── calculator-tvOSTests │ │ └── Info.plist │ ├── calculator.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── calculator-tvOS.xcscheme │ │ │ └── calculator.xcscheme │ ├── calculator │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── calculatorTests │ │ ├── Info.plist │ │ └── calculatorTests.m ├── package.json ├── src │ └── components │ │ ├── Button.js │ │ └── Display.js └── yarn.lock ├── exercicios ├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .vscode │ └── Componente Funcional.code-snippets ├── .watchmanconfig ├── __tests__ │ └── App-test.js ├── android │ ├── app │ │ ├── _BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── exercicios │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── exercicios │ │ │ │ ├── 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 │ ├── Podfile │ ├── Podfile.lock │ ├── exercicios-tvOS │ │ └── Info.plist │ ├── exercicios-tvOSTests │ │ └── Info.plist │ ├── exercicios.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── exercicios-tvOS.xcscheme │ │ │ └── exercicios.xcscheme │ ├── exercicios.xcworkspace │ │ └── contents.xcworkspacedata │ ├── exercicios │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── exerciciosTests │ │ ├── Info.plist │ │ └── exerciciosTests.m ├── metro.config.js ├── package-lock.json ├── package.json └── src │ ├── App.js │ └── components │ ├── Aleatorio.js │ ├── Botao.js │ ├── Contador.js │ ├── Diferenciar.js │ ├── DigiteSeuNome.js │ ├── If.js │ ├── MinMax.js │ ├── Multi.js │ ├── ParImpar.js │ ├── Primeiro.js │ ├── Titulo.js │ ├── UsuarioLogado.js │ ├── contador │ ├── ContadorBotoes.js │ ├── ContadorDisplay.js │ └── ContadorV2.js │ ├── direta │ ├── Filho.js │ └── Pai.js │ ├── estilo.js │ ├── indireta │ ├── Filho.js │ └── Pai.js │ ├── layout │ ├── FlexboxV1.js │ ├── FlexboxV2.js │ ├── FlexboxV3.js │ ├── FlexboxV4.js │ └── Quadrado.js │ ├── mega │ ├── Mega.js │ └── MegaNumero.js │ ├── produtos │ ├── ListaProdutos.js │ ├── ListaProdutosV2.js │ └── produtos.js │ └── relacao │ ├── Familia.js │ └── Membro.js ├── lambe ├── .babelrc ├── .buckconfig ├── .firebaserc ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── 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 │ │ │ │ └── shelter.otf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── lambe │ │ │ │ ├── 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 ├── app.json ├── assets │ ├── fonts │ │ └── shelter.otf │ └── imgs │ │ ├── boat.jpg │ │ ├── bw.jpg │ │ ├── fence.jpg │ │ ├── gate.jpg │ │ └── icon.png ├── firebase.json ├── functions │ ├── .gitignore │ ├── index.js │ ├── lambe-bedee.json │ ├── package-lock.json │ └── package.json ├── index.js ├── ios │ ├── lambe-tvOS │ │ └── Info.plist │ ├── lambe-tvOSTests │ │ └── Info.plist │ ├── lambe.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── lambe-tvOS.xcscheme │ │ │ └── lambe.xcscheme │ ├── lambe │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── lambeTests │ │ ├── Info.plist │ │ └── lambeTests.m ├── package-lock.json ├── package.json ├── src │ ├── App.js │ ├── Navigator.js │ ├── components │ │ ├── AddComment.js │ │ ├── Author.js │ │ ├── Comments.js │ │ ├── Header.js │ │ └── Post.js │ ├── screens │ │ ├── AddPhoto.js │ │ ├── Feed.js │ │ ├── Login.js │ │ ├── Profile.js │ │ ├── Register.js │ │ └── Splash.js │ └── store │ │ ├── actions │ │ ├── actionTypes.js │ │ ├── message.js │ │ ├── posts.js │ │ └── user.js │ │ ├── reducers │ │ ├── message.js │ │ ├── posts.js │ │ └── user.js │ │ └── storeConfig.js ├── tempCodeRunnerFile.javascript └── yarn.lock ├── legado └── exercicios │ ├── .babelrc │ ├── .buckconfig │ ├── .flowconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .watchmanconfig │ ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── exercicios │ │ │ │ ├── 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 │ ├── app.json │ ├── index.js │ ├── ios │ ├── exercicios-tvOS │ │ └── Info.plist │ ├── exercicios-tvOSTests │ │ └── Info.plist │ ├── exercicios.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── exercicios-tvOS.xcscheme │ │ │ └── exercicios.xcscheme │ ├── exercicios │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── exerciciosTests │ │ ├── Info.plist │ │ └── exerciciosTests.m │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── App.js │ ├── Menu.js │ ├── componentes │ │ ├── ComunicacaoDireta.js │ │ ├── ComunicacaoIndireta.js │ │ ├── Contador.js │ │ ├── Evento.js │ │ ├── Flex.js │ │ ├── If.js │ │ ├── ListaFlex.js │ │ ├── Multi.js │ │ ├── ParImpar.js │ │ ├── Plataformas.js │ │ ├── Simples.js │ │ └── ValidarProps.js │ └── estilo │ │ └── Padrao.js │ └── yarn.lock ├── mines ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── mines │ │ │ │ ├── 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 ├── app.json ├── index.js ├── ios │ ├── mines-tvOS │ │ └── Info.plist │ ├── mines-tvOSTests │ │ └── Info.plist │ ├── mines.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── mines-tvOS.xcscheme │ │ │ └── mines.xcscheme │ ├── mines │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── minesTests │ │ ├── Info.plist │ │ └── minesTests.m ├── package.json ├── src │ ├── components │ │ ├── Field.js │ │ ├── Flag.js │ │ ├── Header.js │ │ ├── Mine.js │ │ └── MineField.js │ ├── functions.js │ ├── params.js │ └── screens │ │ └── LevelSelection.js └── yarn.lock ├── navegacao ├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── __tests__ │ └── App-test.js ├── android │ ├── app │ │ ├── _BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── navegacao │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── 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 │ │ │ │ └── navegacao │ │ │ │ ├── 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 │ ├── Podfile │ ├── Podfile.lock │ ├── navegacao-tvOS │ │ └── Info.plist │ ├── navegacao-tvOSTests │ │ └── Info.plist │ ├── navegacao.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── navegacao-tvOS.xcscheme │ │ │ └── navegacao.xcscheme │ ├── navegacao.xcworkspace │ │ └── contents.xcworkspacedata │ ├── navegacao │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── navegacaoTests │ │ ├── Info.plist │ │ └── navegacaoTests.m ├── metro.config.js ├── package-lock.json ├── package.json └── src │ ├── App.js │ ├── components │ ├── PassoStack.js │ └── TextoCentral.js │ ├── navegacao │ ├── Drawer.js │ ├── Stack.js │ ├── Tab.js │ └── index.js │ └── views │ ├── TelaA.js │ ├── TelaB.js │ ├── TelaC.js │ └── TelaD.js ├── rncrud ├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── __tests__ │ └── App-test.js ├── android │ ├── app │ │ ├── _BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── rncrud │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── 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 │ │ │ │ └── rncrud │ │ │ │ ├── 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 │ ├── Podfile │ ├── rncrud-tvOS │ │ └── Info.plist │ ├── rncrud-tvOSTests │ │ └── Info.plist │ ├── rncrud.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── rncrud-tvOS.xcscheme │ │ │ └── rncrud.xcscheme │ ├── rncrud │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ └── rncrudTests │ │ ├── Info.plist │ │ └── rncrudTests.m ├── metro.config.js ├── package-lock.json ├── package.json ├── src │ ├── App.js │ ├── context │ │ └── UsersContext.js │ ├── data │ │ └── users.js │ └── views │ │ ├── UserForm.js │ │ └── UserList.js └── yarn.lock ├── tasks-backend ├── .gitignore ├── api │ ├── auth.js │ ├── task.js │ └── user.js ├── config │ ├── db.js │ ├── middlewares.js │ ├── passport.js │ └── routes.js ├── env_file ├── index.js ├── knexfile.js ├── migrations │ ├── 20180830152716_create_table_users.js │ └── 20180830152747_create_table_tasks.js ├── package-lock.json ├── package.json └── yarn.lock ├── tasks ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── Entypo.ttf │ │ │ │ ├── EvilIcons.ttf │ │ │ │ ├── Feather.ttf │ │ │ │ ├── FontAwesome.ttf │ │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ │ ├── Foundation.ttf │ │ │ │ ├── Ionicons.ttf │ │ │ │ ├── Lato.ttf │ │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ ├── Octicons.ttf │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ └── Zocial.ttf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── tasks │ │ │ │ ├── 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 ├── app.json ├── assets │ ├── fonts │ │ └── Lato.ttf │ └── imgs │ │ ├── login.jpg │ │ ├── month.jpg │ │ ├── today.jpg │ │ ├── tomorrow.jpg │ │ └── week.jpg ├── index.js ├── ios │ ├── tasks-tvOS │ │ └── Info.plist │ ├── tasks-tvOSTests │ │ └── Info.plist │ ├── tasks.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── tasks-tvOS.xcscheme │ │ │ └── tasks.xcscheme │ ├── tasks │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── tasksTests │ │ ├── Info.plist │ │ └── tasksTests.m ├── package-lock.json ├── package.json ├── src │ ├── Navigator.js │ ├── common.js │ ├── commonStyles.js │ ├── components │ │ ├── AuthInput.js │ │ └── Task.js │ └── screens │ │ ├── AddTask.js │ │ ├── Agenda.js │ │ ├── Auth.js │ │ ├── AuthOrApp.js │ │ └── Menu.js └── yarn.lock ├── tasks2020 ├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── __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 │ │ │ │ ├── Fontisto.ttf │ │ │ │ ├── Foundation.ttf │ │ │ │ ├── Ionicons.ttf │ │ │ │ ├── Lato.ttf │ │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ ├── Octicons.ttf │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ └── Zocial.ttf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── tasks │ │ │ │ ├── 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 ├── assets │ ├── fonts │ │ └── Lato.ttf │ └── imgs │ │ ├── login.jpg │ │ ├── month.jpg │ │ ├── today.jpg │ │ ├── tomorrow.jpg │ │ └── week.jpg ├── babel.config.js ├── index.js ├── ios │ ├── Podfile │ ├── Podfile.lock │ ├── tasks-tvOS │ │ └── Info.plist │ ├── tasks-tvOSTests │ │ └── Info.plist │ ├── tasks.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── tasks-tvOS.xcscheme │ │ │ └── tasks.xcscheme │ ├── tasks.xcworkspace │ │ └── contents.xcworkspacedata │ ├── tasks │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── tasksTests │ │ ├── Info.plist │ │ └── tasksTests.m ├── metro.config.js ├── package-lock.json ├── package.json ├── react-native.config.js └── src │ ├── Navigator.js │ ├── common.js │ ├── commonStyles.js │ ├── components │ ├── AuthInput.js │ └── Task.js │ └── screens │ ├── AddTask.js │ ├── Auth.js │ ├── AuthOrApp.js │ ├── Menu.js │ └── TaskList.js └── tasks2020Navigation5 ├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── Tasks_com_Navigation_5.pdf ├── __tests__ └── App-test.js ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── tasks2020navigation5 │ │ │ └── ReactNativeFlipper.java │ │ └── 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 │ │ │ ├── Lato.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── tasks2020navigation5 │ │ │ ├── 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 ├── arquivos_tasks2020Nav5.zip ├── assets ├── fonts │ └── Lato.ttf └── imgs │ ├── login.jpg │ ├── month.jpg │ ├── today.jpg │ ├── tomorrow.jpg │ └── week.jpg ├── babel.config.js ├── index.js ├── index.md ├── ios ├── Podfile ├── Podfile.lock ├── tasks2020Navigation5-tvOS │ └── Info.plist ├── tasks2020Navigation5-tvOSTests │ └── Info.plist ├── tasks2020Navigation5.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ ├── tasks2020Navigation5-tvOS.xcscheme │ │ └── tasks2020Navigation5.xcscheme ├── tasks2020Navigation5.xcworkspace │ └── contents.xcworkspacedata ├── tasks2020Navigation5 │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── tasks2020Navigation5Tests │ ├── Info.plist │ └── tasks2020Navigation5Tests.m ├── metro.config.js ├── package-lock.json ├── package.json ├── react-native.config.js ├── src ├── Navigator.js ├── common.js ├── commonStyles.js ├── components │ ├── AuthInput.js │ └── Task.js └── screens │ ├── AddTask.js │ ├── Auth.js │ ├── AuthOrApp.js │ ├── Menu.js │ └── TaskList.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /2022/Calculator/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/.buckconfig -------------------------------------------------------------------------------- /2022/Calculator/.editorconfig: -------------------------------------------------------------------------------- 1 | # Windows files 2 | [*.bat] 3 | end_of_line = crlf 4 | -------------------------------------------------------------------------------- /2022/Calculator/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /2022/Calculator/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/.flowconfig -------------------------------------------------------------------------------- /2022/Calculator/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/.gitattributes -------------------------------------------------------------------------------- /2022/Calculator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/.gitignore -------------------------------------------------------------------------------- /2022/Calculator/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/.prettierrc.js -------------------------------------------------------------------------------- /2022/Calculator/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /2022/Calculator/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/App.js -------------------------------------------------------------------------------- /2022/Calculator/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/__tests__/App-test.js -------------------------------------------------------------------------------- /2022/Calculator/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/android/app/_BUCK -------------------------------------------------------------------------------- /2022/Calculator/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/android/app/build.gradle -------------------------------------------------------------------------------- /2022/Calculator/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/android/app/build_defs.bzl -------------------------------------------------------------------------------- /2022/Calculator/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/android/app/debug.keystore -------------------------------------------------------------------------------- /2022/Calculator/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /2022/Calculator/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/android/build.gradle -------------------------------------------------------------------------------- /2022/Calculator/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/android/gradle.properties -------------------------------------------------------------------------------- /2022/Calculator/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/android/gradlew -------------------------------------------------------------------------------- /2022/Calculator/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/android/gradlew.bat -------------------------------------------------------------------------------- /2022/Calculator/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/android/settings.gradle -------------------------------------------------------------------------------- /2022/Calculator/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/app.json -------------------------------------------------------------------------------- /2022/Calculator/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/babel.config.js -------------------------------------------------------------------------------- /2022/Calculator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/index.js -------------------------------------------------------------------------------- /2022/Calculator/ios/Calculator/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/ios/Calculator/AppDelegate.h -------------------------------------------------------------------------------- /2022/Calculator/ios/Calculator/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/ios/Calculator/AppDelegate.m -------------------------------------------------------------------------------- /2022/Calculator/ios/Calculator/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/ios/Calculator/Info.plist -------------------------------------------------------------------------------- /2022/Calculator/ios/Calculator/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/ios/Calculator/main.m -------------------------------------------------------------------------------- /2022/Calculator/ios/CalculatorTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/ios/CalculatorTests/Info.plist -------------------------------------------------------------------------------- /2022/Calculator/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/ios/Podfile -------------------------------------------------------------------------------- /2022/Calculator/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/metro.config.js -------------------------------------------------------------------------------- /2022/Calculator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/package-lock.json -------------------------------------------------------------------------------- /2022/Calculator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/package.json -------------------------------------------------------------------------------- /2022/Calculator/src/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/src/components/Button.js -------------------------------------------------------------------------------- /2022/Calculator/src/components/Display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Calculator/src/components/Display.js -------------------------------------------------------------------------------- /2022/InstaClone/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/.buckconfig -------------------------------------------------------------------------------- /2022/InstaClone/.editorconfig: -------------------------------------------------------------------------------- 1 | # Windows files 2 | [*.bat] 3 | end_of_line = crlf 4 | -------------------------------------------------------------------------------- /2022/InstaClone/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /2022/InstaClone/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/.firebaserc -------------------------------------------------------------------------------- /2022/InstaClone/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/.flowconfig -------------------------------------------------------------------------------- /2022/InstaClone/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/.gitattributes -------------------------------------------------------------------------------- /2022/InstaClone/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/.gitignore -------------------------------------------------------------------------------- /2022/InstaClone/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/.prettierrc.js -------------------------------------------------------------------------------- /2022/InstaClone/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /2022/InstaClone/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/App.js -------------------------------------------------------------------------------- /2022/InstaClone/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/Readme.md -------------------------------------------------------------------------------- /2022/InstaClone/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/__tests__/App-test.js -------------------------------------------------------------------------------- /2022/InstaClone/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/android/app/_BUCK -------------------------------------------------------------------------------- /2022/InstaClone/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/android/app/build.gradle -------------------------------------------------------------------------------- /2022/InstaClone/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/android/app/build_defs.bzl -------------------------------------------------------------------------------- /2022/InstaClone/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/android/app/debug.keystore -------------------------------------------------------------------------------- /2022/InstaClone/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /2022/InstaClone/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/android/build.gradle -------------------------------------------------------------------------------- /2022/InstaClone/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/android/gradle.properties -------------------------------------------------------------------------------- /2022/InstaClone/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/android/gradlew -------------------------------------------------------------------------------- /2022/InstaClone/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/android/gradlew.bat -------------------------------------------------------------------------------- /2022/InstaClone/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/android/settings.gradle -------------------------------------------------------------------------------- /2022/InstaClone/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/app.json -------------------------------------------------------------------------------- /2022/InstaClone/assets/fonts/shelter.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/assets/fonts/shelter.otf -------------------------------------------------------------------------------- /2022/InstaClone/assets/imgs/boat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/assets/imgs/boat.jpg -------------------------------------------------------------------------------- /2022/InstaClone/assets/imgs/bw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/assets/imgs/bw.jpg -------------------------------------------------------------------------------- /2022/InstaClone/assets/imgs/fence.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/assets/imgs/fence.jpg -------------------------------------------------------------------------------- /2022/InstaClone/assets/imgs/gate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/assets/imgs/gate.jpg -------------------------------------------------------------------------------- /2022/InstaClone/assets/imgs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/assets/imgs/icon.png -------------------------------------------------------------------------------- /2022/InstaClone/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/babel.config.js -------------------------------------------------------------------------------- /2022/InstaClone/firebase.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /2022/InstaClone/functions/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /2022/InstaClone/functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/functions/index.js -------------------------------------------------------------------------------- /2022/InstaClone/functions/instaclone-b78e8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/functions/instaclone-b78e8.json -------------------------------------------------------------------------------- /2022/InstaClone/functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/functions/package-lock.json -------------------------------------------------------------------------------- /2022/InstaClone/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/functions/package.json -------------------------------------------------------------------------------- /2022/InstaClone/functions/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/functions/yarn.lock -------------------------------------------------------------------------------- /2022/InstaClone/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/index.js -------------------------------------------------------------------------------- /2022/InstaClone/ios/InstaClone/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/ios/InstaClone/AppDelegate.h -------------------------------------------------------------------------------- /2022/InstaClone/ios/InstaClone/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/ios/InstaClone/AppDelegate.m -------------------------------------------------------------------------------- /2022/InstaClone/ios/InstaClone/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/ios/InstaClone/Info.plist -------------------------------------------------------------------------------- /2022/InstaClone/ios/InstaClone/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/ios/InstaClone/main.m -------------------------------------------------------------------------------- /2022/InstaClone/ios/InstaCloneTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/ios/InstaCloneTests/Info.plist -------------------------------------------------------------------------------- /2022/InstaClone/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/ios/Podfile -------------------------------------------------------------------------------- /2022/InstaClone/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/metro.config.js -------------------------------------------------------------------------------- /2022/InstaClone/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/package.json -------------------------------------------------------------------------------- /2022/InstaClone/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/react-native.config.js -------------------------------------------------------------------------------- /2022/InstaClone/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/src/App.js -------------------------------------------------------------------------------- /2022/InstaClone/src/Navigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/src/Navigator.js -------------------------------------------------------------------------------- /2022/InstaClone/src/componentes/AddComment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/src/componentes/AddComment.js -------------------------------------------------------------------------------- /2022/InstaClone/src/componentes/Author.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/src/componentes/Author.js -------------------------------------------------------------------------------- /2022/InstaClone/src/componentes/Comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/src/componentes/Comments.js -------------------------------------------------------------------------------- /2022/InstaClone/src/componentes/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/src/componentes/Header.js -------------------------------------------------------------------------------- /2022/InstaClone/src/componentes/Post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/src/componentes/Post.js -------------------------------------------------------------------------------- /2022/InstaClone/src/data/contexts/FeedContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/src/data/contexts/FeedContext.js -------------------------------------------------------------------------------- /2022/InstaClone/src/data/contexts/UserContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/src/data/contexts/UserContext.js -------------------------------------------------------------------------------- /2022/InstaClone/src/data/hooks/useEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/src/data/hooks/useEvent.js -------------------------------------------------------------------------------- /2022/InstaClone/src/data/hooks/useFeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/src/data/hooks/useFeed.js -------------------------------------------------------------------------------- /2022/InstaClone/src/data/hooks/useUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/src/data/hooks/useUser.js -------------------------------------------------------------------------------- /2022/InstaClone/src/hooks/UseEffectIf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/src/hooks/UseEffectIf.js -------------------------------------------------------------------------------- /2022/InstaClone/src/hooks/UseEffectIfNot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/src/hooks/UseEffectIfNot.js -------------------------------------------------------------------------------- /2022/InstaClone/src/screens/AddPhoto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/src/screens/AddPhoto.js -------------------------------------------------------------------------------- /2022/InstaClone/src/screens/Feed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/src/screens/Feed.js -------------------------------------------------------------------------------- /2022/InstaClone/src/screens/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/src/screens/Login.js -------------------------------------------------------------------------------- /2022/InstaClone/src/screens/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/src/screens/Profile.js -------------------------------------------------------------------------------- /2022/InstaClone/src/screens/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/src/screens/Register.js -------------------------------------------------------------------------------- /2022/InstaClone/src/screens/Splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/src/screens/Splash.js -------------------------------------------------------------------------------- /2022/InstaClone/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/InstaClone/yarn.lock -------------------------------------------------------------------------------- /2022/Mines/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/.buckconfig -------------------------------------------------------------------------------- /2022/Mines/.editorconfig: -------------------------------------------------------------------------------- 1 | # Windows files 2 | [*.bat] 3 | end_of_line = crlf 4 | -------------------------------------------------------------------------------- /2022/Mines/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /2022/Mines/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/.flowconfig -------------------------------------------------------------------------------- /2022/Mines/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/.gitattributes -------------------------------------------------------------------------------- /2022/Mines/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/.gitignore -------------------------------------------------------------------------------- /2022/Mines/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/.prettierrc.js -------------------------------------------------------------------------------- /2022/Mines/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /2022/Mines/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/App.js -------------------------------------------------------------------------------- /2022/Mines/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/__tests__/App-test.js -------------------------------------------------------------------------------- /2022/Mines/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/android/app/_BUCK -------------------------------------------------------------------------------- /2022/Mines/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/android/app/build.gradle -------------------------------------------------------------------------------- /2022/Mines/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/android/app/build_defs.bzl -------------------------------------------------------------------------------- /2022/Mines/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/android/app/debug.keystore -------------------------------------------------------------------------------- /2022/Mines/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /2022/Mines/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/android/build.gradle -------------------------------------------------------------------------------- /2022/Mines/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/android/gradle.properties -------------------------------------------------------------------------------- /2022/Mines/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/android/gradlew -------------------------------------------------------------------------------- /2022/Mines/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/android/gradlew.bat -------------------------------------------------------------------------------- /2022/Mines/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/android/settings.gradle -------------------------------------------------------------------------------- /2022/Mines/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/app.json -------------------------------------------------------------------------------- /2022/Mines/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/babel.config.js -------------------------------------------------------------------------------- /2022/Mines/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/index.js -------------------------------------------------------------------------------- /2022/Mines/ios/Mines.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/ios/Mines.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /2022/Mines/ios/Mines/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/ios/Mines/AppDelegate.h -------------------------------------------------------------------------------- /2022/Mines/ios/Mines/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/ios/Mines/AppDelegate.m -------------------------------------------------------------------------------- /2022/Mines/ios/Mines/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/ios/Mines/Info.plist -------------------------------------------------------------------------------- /2022/Mines/ios/Mines/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/ios/Mines/LaunchScreen.storyboard -------------------------------------------------------------------------------- /2022/Mines/ios/Mines/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/ios/Mines/main.m -------------------------------------------------------------------------------- /2022/Mines/ios/MinesTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/ios/MinesTests/Info.plist -------------------------------------------------------------------------------- /2022/Mines/ios/MinesTests/MinesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/ios/MinesTests/MinesTests.m -------------------------------------------------------------------------------- /2022/Mines/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/ios/Podfile -------------------------------------------------------------------------------- /2022/Mines/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/metro.config.js -------------------------------------------------------------------------------- /2022/Mines/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/package-lock.json -------------------------------------------------------------------------------- /2022/Mines/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/package.json -------------------------------------------------------------------------------- /2022/Mines/src/components/Field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/src/components/Field.js -------------------------------------------------------------------------------- /2022/Mines/src/components/Flag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/src/components/Flag.js -------------------------------------------------------------------------------- /2022/Mines/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/src/components/Header.js -------------------------------------------------------------------------------- /2022/Mines/src/components/Mine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/src/components/Mine.js -------------------------------------------------------------------------------- /2022/Mines/src/components/MineField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/src/components/MineField.js -------------------------------------------------------------------------------- /2022/Mines/src/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/src/functions.js -------------------------------------------------------------------------------- /2022/Mines/src/params.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/src/params.js -------------------------------------------------------------------------------- /2022/Mines/src/screens/LevelSelection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Mines/src/screens/LevelSelection.js -------------------------------------------------------------------------------- /2022/Navigation/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/.buckconfig -------------------------------------------------------------------------------- /2022/Navigation/.editorconfig: -------------------------------------------------------------------------------- 1 | # Windows files 2 | [*.bat] 3 | end_of_line = crlf 4 | -------------------------------------------------------------------------------- /2022/Navigation/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /2022/Navigation/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/.flowconfig -------------------------------------------------------------------------------- /2022/Navigation/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/.gitattributes -------------------------------------------------------------------------------- /2022/Navigation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/.gitignore -------------------------------------------------------------------------------- /2022/Navigation/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/.prettierrc.js -------------------------------------------------------------------------------- /2022/Navigation/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /2022/Navigation/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/App.js -------------------------------------------------------------------------------- /2022/Navigation/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/Readme.md -------------------------------------------------------------------------------- /2022/Navigation/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/__tests__/App-test.js -------------------------------------------------------------------------------- /2022/Navigation/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/android/app/_BUCK -------------------------------------------------------------------------------- /2022/Navigation/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/android/app/build.gradle -------------------------------------------------------------------------------- /2022/Navigation/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/android/app/build_defs.bzl -------------------------------------------------------------------------------- /2022/Navigation/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/android/app/debug.keystore -------------------------------------------------------------------------------- /2022/Navigation/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /2022/Navigation/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/android/build.gradle -------------------------------------------------------------------------------- /2022/Navigation/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/android/gradle.properties -------------------------------------------------------------------------------- /2022/Navigation/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/android/gradlew -------------------------------------------------------------------------------- /2022/Navigation/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/android/gradlew.bat -------------------------------------------------------------------------------- /2022/Navigation/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/android/settings.gradle -------------------------------------------------------------------------------- /2022/Navigation/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/app.json -------------------------------------------------------------------------------- /2022/Navigation/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/babel.config.js -------------------------------------------------------------------------------- /2022/Navigation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/index.js -------------------------------------------------------------------------------- /2022/Navigation/ios/Navigation/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/ios/Navigation/AppDelegate.h -------------------------------------------------------------------------------- /2022/Navigation/ios/Navigation/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/ios/Navigation/AppDelegate.m -------------------------------------------------------------------------------- /2022/Navigation/ios/Navigation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/ios/Navigation/Info.plist -------------------------------------------------------------------------------- /2022/Navigation/ios/Navigation/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/ios/Navigation/main.m -------------------------------------------------------------------------------- /2022/Navigation/ios/NavigationTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/ios/NavigationTests/Info.plist -------------------------------------------------------------------------------- /2022/Navigation/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/ios/Podfile -------------------------------------------------------------------------------- /2022/Navigation/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/metro.config.js -------------------------------------------------------------------------------- /2022/Navigation/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/package-lock.json -------------------------------------------------------------------------------- /2022/Navigation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/package.json -------------------------------------------------------------------------------- /2022/Navigation/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/src/App.js -------------------------------------------------------------------------------- /2022/Navigation/src/components/PassoStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/src/components/PassoStack.js -------------------------------------------------------------------------------- /2022/Navigation/src/components/TextoCentral.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/src/components/TextoCentral.js -------------------------------------------------------------------------------- /2022/Navigation/src/navegacao/Drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/src/navegacao/Drawer.js -------------------------------------------------------------------------------- /2022/Navigation/src/navegacao/Stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/src/navegacao/Stack.js -------------------------------------------------------------------------------- /2022/Navigation/src/navegacao/Tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/src/navegacao/Tab.js -------------------------------------------------------------------------------- /2022/Navigation/src/navegacao/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/src/navegacao/index.js -------------------------------------------------------------------------------- /2022/Navigation/src/views/TelaA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/src/views/TelaA.js -------------------------------------------------------------------------------- /2022/Navigation/src/views/TelaB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/src/views/TelaB.js -------------------------------------------------------------------------------- /2022/Navigation/src/views/TelaC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/src/views/TelaC.js -------------------------------------------------------------------------------- /2022/Navigation/src/views/TelaD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/src/views/TelaD.js -------------------------------------------------------------------------------- /2022/Navigation/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Navigation/yarn.lock -------------------------------------------------------------------------------- /2022/Tasks/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/.buckconfig -------------------------------------------------------------------------------- /2022/Tasks/.editorconfig: -------------------------------------------------------------------------------- 1 | # Windows files 2 | [*.bat] 3 | end_of_line = crlf 4 | -------------------------------------------------------------------------------- /2022/Tasks/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /2022/Tasks/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/.flowconfig -------------------------------------------------------------------------------- /2022/Tasks/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/.gitattributes -------------------------------------------------------------------------------- /2022/Tasks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/.gitignore -------------------------------------------------------------------------------- /2022/Tasks/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/.prettierrc.js -------------------------------------------------------------------------------- /2022/Tasks/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /2022/Tasks/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/__tests__/App-test.js -------------------------------------------------------------------------------- /2022/Tasks/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/android/app/_BUCK -------------------------------------------------------------------------------- /2022/Tasks/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/android/app/build.gradle -------------------------------------------------------------------------------- /2022/Tasks/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/android/app/build_defs.bzl -------------------------------------------------------------------------------- /2022/Tasks/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/android/app/debug.keystore -------------------------------------------------------------------------------- /2022/Tasks/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /2022/Tasks/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/android/build.gradle -------------------------------------------------------------------------------- /2022/Tasks/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/android/gradle.properties -------------------------------------------------------------------------------- /2022/Tasks/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/android/gradlew -------------------------------------------------------------------------------- /2022/Tasks/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/android/gradlew.bat -------------------------------------------------------------------------------- /2022/Tasks/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/android/settings.gradle -------------------------------------------------------------------------------- /2022/Tasks/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/app.json -------------------------------------------------------------------------------- /2022/Tasks/assets/fonts/Lato.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/assets/fonts/Lato.ttf -------------------------------------------------------------------------------- /2022/Tasks/assets/imgs/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/assets/imgs/login.jpg -------------------------------------------------------------------------------- /2022/Tasks/assets/imgs/month.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/assets/imgs/month.jpg -------------------------------------------------------------------------------- /2022/Tasks/assets/imgs/today.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/assets/imgs/today.jpg -------------------------------------------------------------------------------- /2022/Tasks/assets/imgs/tomorrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/assets/imgs/tomorrow.jpg -------------------------------------------------------------------------------- /2022/Tasks/assets/imgs/week.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/assets/imgs/week.jpg -------------------------------------------------------------------------------- /2022/Tasks/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/babel.config.js -------------------------------------------------------------------------------- /2022/Tasks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/index.js -------------------------------------------------------------------------------- /2022/Tasks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/index.md -------------------------------------------------------------------------------- /2022/Tasks/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/ios/Podfile -------------------------------------------------------------------------------- /2022/Tasks/ios/Tasks.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/ios/Tasks.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /2022/Tasks/ios/Tasks/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/ios/Tasks/AppDelegate.h -------------------------------------------------------------------------------- /2022/Tasks/ios/Tasks/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/ios/Tasks/AppDelegate.m -------------------------------------------------------------------------------- /2022/Tasks/ios/Tasks/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/ios/Tasks/Info.plist -------------------------------------------------------------------------------- /2022/Tasks/ios/Tasks/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/ios/Tasks/LaunchScreen.storyboard -------------------------------------------------------------------------------- /2022/Tasks/ios/Tasks/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/ios/Tasks/main.m -------------------------------------------------------------------------------- /2022/Tasks/ios/TasksTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/ios/TasksTests/Info.plist -------------------------------------------------------------------------------- /2022/Tasks/ios/TasksTests/TasksTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/ios/TasksTests/TasksTests.m -------------------------------------------------------------------------------- /2022/Tasks/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/metro.config.js -------------------------------------------------------------------------------- /2022/Tasks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/package.json -------------------------------------------------------------------------------- /2022/Tasks/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/react-native.config.js -------------------------------------------------------------------------------- /2022/Tasks/src/Navigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/src/Navigator.js -------------------------------------------------------------------------------- /2022/Tasks/src/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/src/common.js -------------------------------------------------------------------------------- /2022/Tasks/src/commonStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/src/commonStyles.js -------------------------------------------------------------------------------- /2022/Tasks/src/components/AuthInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/src/components/AuthInput.js -------------------------------------------------------------------------------- /2022/Tasks/src/components/Task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/src/components/Task.js -------------------------------------------------------------------------------- /2022/Tasks/src/screens/AddTask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/src/screens/AddTask.js -------------------------------------------------------------------------------- /2022/Tasks/src/screens/Auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/src/screens/Auth.js -------------------------------------------------------------------------------- /2022/Tasks/src/screens/AuthOrApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/src/screens/AuthOrApp.js -------------------------------------------------------------------------------- /2022/Tasks/src/screens/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/src/screens/Menu.js -------------------------------------------------------------------------------- /2022/Tasks/src/screens/TaskList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/src/screens/TaskList.js -------------------------------------------------------------------------------- /2022/Tasks/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/Tasks/yarn.lock -------------------------------------------------------------------------------- /2022/UserCrud/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/.buckconfig -------------------------------------------------------------------------------- /2022/UserCrud/.editorconfig: -------------------------------------------------------------------------------- 1 | # Windows files 2 | [*.bat] 3 | end_of_line = crlf 4 | -------------------------------------------------------------------------------- /2022/UserCrud/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /2022/UserCrud/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/.flowconfig -------------------------------------------------------------------------------- /2022/UserCrud/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/.gitattributes -------------------------------------------------------------------------------- /2022/UserCrud/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/.gitignore -------------------------------------------------------------------------------- /2022/UserCrud/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/.prettierrc.js -------------------------------------------------------------------------------- /2022/UserCrud/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /2022/UserCrud/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/Readme.md -------------------------------------------------------------------------------- /2022/UserCrud/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/__tests__/App-test.js -------------------------------------------------------------------------------- /2022/UserCrud/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/android/app/_BUCK -------------------------------------------------------------------------------- /2022/UserCrud/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/android/app/build.gradle -------------------------------------------------------------------------------- /2022/UserCrud/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/android/app/build_defs.bzl -------------------------------------------------------------------------------- /2022/UserCrud/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/android/app/debug.keystore -------------------------------------------------------------------------------- /2022/UserCrud/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /2022/UserCrud/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/android/build.gradle -------------------------------------------------------------------------------- /2022/UserCrud/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/android/gradle.properties -------------------------------------------------------------------------------- /2022/UserCrud/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/android/gradlew -------------------------------------------------------------------------------- /2022/UserCrud/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/android/gradlew.bat -------------------------------------------------------------------------------- /2022/UserCrud/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/android/settings.gradle -------------------------------------------------------------------------------- /2022/UserCrud/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/app.json -------------------------------------------------------------------------------- /2022/UserCrud/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/babel.config.js -------------------------------------------------------------------------------- /2022/UserCrud/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/index.js -------------------------------------------------------------------------------- /2022/UserCrud/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/ios/Podfile -------------------------------------------------------------------------------- /2022/UserCrud/ios/UserCrud/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/ios/UserCrud/AppDelegate.h -------------------------------------------------------------------------------- /2022/UserCrud/ios/UserCrud/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/ios/UserCrud/AppDelegate.m -------------------------------------------------------------------------------- /2022/UserCrud/ios/UserCrud/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/ios/UserCrud/Info.plist -------------------------------------------------------------------------------- /2022/UserCrud/ios/UserCrud/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/ios/UserCrud/main.m -------------------------------------------------------------------------------- /2022/UserCrud/ios/UserCrudTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/ios/UserCrudTests/Info.plist -------------------------------------------------------------------------------- /2022/UserCrud/ios/UserCrudTests/UserCrudTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/ios/UserCrudTests/UserCrudTests.m -------------------------------------------------------------------------------- /2022/UserCrud/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/metro.config.js -------------------------------------------------------------------------------- /2022/UserCrud/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/package.json -------------------------------------------------------------------------------- /2022/UserCrud/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/src/App.js -------------------------------------------------------------------------------- /2022/UserCrud/src/context/UsersContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/src/context/UsersContext.js -------------------------------------------------------------------------------- /2022/UserCrud/src/data/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/src/data/users.js -------------------------------------------------------------------------------- /2022/UserCrud/src/views/UserForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/src/views/UserForm.js -------------------------------------------------------------------------------- /2022/UserCrud/src/views/UserList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/src/views/UserList.js -------------------------------------------------------------------------------- /2022/UserCrud/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/UserCrud/yarn.lock -------------------------------------------------------------------------------- /2022/tasks-backend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | *.log -------------------------------------------------------------------------------- /2022/tasks-backend/api/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/tasks-backend/api/auth.js -------------------------------------------------------------------------------- /2022/tasks-backend/api/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/tasks-backend/api/task.js -------------------------------------------------------------------------------- /2022/tasks-backend/api/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/tasks-backend/api/user.js -------------------------------------------------------------------------------- /2022/tasks-backend/config/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/tasks-backend/config/db.js -------------------------------------------------------------------------------- /2022/tasks-backend/config/middlewares.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/tasks-backend/config/middlewares.js -------------------------------------------------------------------------------- /2022/tasks-backend/config/passport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/tasks-backend/config/passport.js -------------------------------------------------------------------------------- /2022/tasks-backend/config/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/tasks-backend/config/routes.js -------------------------------------------------------------------------------- /2022/tasks-backend/env_file: -------------------------------------------------------------------------------- 1 | // Renomear para .env 2 | 3 | module.exports = { 4 | authSecret: '' 5 | } -------------------------------------------------------------------------------- /2022/tasks-backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/tasks-backend/index.js -------------------------------------------------------------------------------- /2022/tasks-backend/knexfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/tasks-backend/knexfile.js -------------------------------------------------------------------------------- /2022/tasks-backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/tasks-backend/package-lock.json -------------------------------------------------------------------------------- /2022/tasks-backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/tasks-backend/package.json -------------------------------------------------------------------------------- /2022/tasks-backend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/2022/tasks-backend/yarn.lock -------------------------------------------------------------------------------- /Componentes/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /Componentes/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/.buckconfig -------------------------------------------------------------------------------- /Componentes/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/.flowconfig -------------------------------------------------------------------------------- /Componentes/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /Componentes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/.gitignore -------------------------------------------------------------------------------- /Componentes/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Componentes/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/App.js -------------------------------------------------------------------------------- /Componentes/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/android/app/BUCK -------------------------------------------------------------------------------- /Componentes/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/android/app/build.gradle -------------------------------------------------------------------------------- /Componentes/android/app/componentes-key.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/android/app/componentes-key.keystore -------------------------------------------------------------------------------- /Componentes/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Componentes/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/android/build.gradle -------------------------------------------------------------------------------- /Componentes/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/android/gradle.properties -------------------------------------------------------------------------------- /Componentes/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/android/gradlew -------------------------------------------------------------------------------- /Componentes/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/android/gradlew.bat -------------------------------------------------------------------------------- /Componentes/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/android/keystores/BUCK -------------------------------------------------------------------------------- /Componentes/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/android/settings.gradle -------------------------------------------------------------------------------- /Componentes/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/app.json -------------------------------------------------------------------------------- /Componentes/assets/ba.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/assets/ba.jpg -------------------------------------------------------------------------------- /Componentes/assets/clique-aqui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/assets/clique-aqui.png -------------------------------------------------------------------------------- /Componentes/assets/cookie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/assets/cookie.jpg -------------------------------------------------------------------------------- /Componentes/assets/df.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/assets/df.jpg -------------------------------------------------------------------------------- /Componentes/assets/fortaleza.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/assets/fortaleza.jpg -------------------------------------------------------------------------------- /Componentes/assets/pimenta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/assets/pimenta.jpg -------------------------------------------------------------------------------- /Componentes/assets/pipoca.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/assets/pipoca.jpg -------------------------------------------------------------------------------- /Componentes/assets/pr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/assets/pr.jpg -------------------------------------------------------------------------------- /Componentes/assets/rj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/assets/rj.jpg -------------------------------------------------------------------------------- /Componentes/assets/sp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/assets/sp.jpg -------------------------------------------------------------------------------- /Componentes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/index.js -------------------------------------------------------------------------------- /Componentes/ios/Componentes-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/ios/Componentes-tvOS/Info.plist -------------------------------------------------------------------------------- /Componentes/ios/Componentes-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/ios/Componentes-tvOSTests/Info.plist -------------------------------------------------------------------------------- /Componentes/ios/Componentes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/ios/Componentes/AppDelegate.h -------------------------------------------------------------------------------- /Componentes/ios/Componentes/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/ios/Componentes/AppDelegate.m -------------------------------------------------------------------------------- /Componentes/ios/Componentes/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/ios/Componentes/Info.plist -------------------------------------------------------------------------------- /Componentes/ios/Componentes/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/ios/Componentes/main.m -------------------------------------------------------------------------------- /Componentes/ios/ComponentesTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/ios/ComponentesTests/Info.plist -------------------------------------------------------------------------------- /Componentes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/package.json -------------------------------------------------------------------------------- /Componentes/src/components/DateTimeIOS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/src/components/DateTimeIOS.js -------------------------------------------------------------------------------- /Componentes/src/view/Accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/src/view/Accordion.js -------------------------------------------------------------------------------- /Componentes/src/view/Bandeira.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/src/view/Bandeira.js -------------------------------------------------------------------------------- /Componentes/src/view/Click.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/src/view/Click.js -------------------------------------------------------------------------------- /Componentes/src/view/DragList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/src/view/DragList.js -------------------------------------------------------------------------------- /Componentes/src/view/FlexBoxTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/src/view/FlexBoxTests.js -------------------------------------------------------------------------------- /Componentes/src/view/Formulario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/src/view/Formulario.js -------------------------------------------------------------------------------- /Componentes/src/view/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/src/view/Menu.js -------------------------------------------------------------------------------- /Componentes/src/view/Swipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/src/view/Swipe.js -------------------------------------------------------------------------------- /Componentes/src/view/SwipeList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/src/view/SwipeList.js -------------------------------------------------------------------------------- /Componentes/src/view/Tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/src/view/Tabs.js -------------------------------------------------------------------------------- /Componentes/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Componentes/yarn.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/README.md -------------------------------------------------------------------------------- /Updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/Updates.md -------------------------------------------------------------------------------- /calculator/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /calculator/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/.buckconfig -------------------------------------------------------------------------------- /calculator/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/.flowconfig -------------------------------------------------------------------------------- /calculator/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /calculator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/.gitignore -------------------------------------------------------------------------------- /calculator/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /calculator/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/App.js -------------------------------------------------------------------------------- /calculator/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/android/app/BUCK -------------------------------------------------------------------------------- /calculator/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/android/app/build.gradle -------------------------------------------------------------------------------- /calculator/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /calculator/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/android/build.gradle -------------------------------------------------------------------------------- /calculator/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/android/gradle.properties -------------------------------------------------------------------------------- /calculator/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/android/gradlew -------------------------------------------------------------------------------- /calculator/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/android/gradlew.bat -------------------------------------------------------------------------------- /calculator/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/android/keystores/BUCK -------------------------------------------------------------------------------- /calculator/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'calculator' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /calculator/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/app.json -------------------------------------------------------------------------------- /calculator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/index.js -------------------------------------------------------------------------------- /calculator/ios/calculator-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/ios/calculator-tvOS/Info.plist -------------------------------------------------------------------------------- /calculator/ios/calculator-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/ios/calculator-tvOSTests/Info.plist -------------------------------------------------------------------------------- /calculator/ios/calculator/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/ios/calculator/AppDelegate.h -------------------------------------------------------------------------------- /calculator/ios/calculator/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/ios/calculator/AppDelegate.m -------------------------------------------------------------------------------- /calculator/ios/calculator/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/ios/calculator/Info.plist -------------------------------------------------------------------------------- /calculator/ios/calculator/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/ios/calculator/main.m -------------------------------------------------------------------------------- /calculator/ios/calculatorTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/ios/calculatorTests/Info.plist -------------------------------------------------------------------------------- /calculator/ios/calculatorTests/calculatorTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/ios/calculatorTests/calculatorTests.m -------------------------------------------------------------------------------- /calculator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/package.json -------------------------------------------------------------------------------- /calculator/src/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/src/components/Button.js -------------------------------------------------------------------------------- /calculator/src/components/Display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/src/components/Display.js -------------------------------------------------------------------------------- /calculator/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/calculator/yarn.lock -------------------------------------------------------------------------------- /exercicios/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/.buckconfig -------------------------------------------------------------------------------- /exercicios/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /exercicios/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/.flowconfig -------------------------------------------------------------------------------- /exercicios/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /exercicios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/.gitignore -------------------------------------------------------------------------------- /exercicios/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/.prettierrc.js -------------------------------------------------------------------------------- /exercicios/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /exercicios/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/__tests__/App-test.js -------------------------------------------------------------------------------- /exercicios/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/android/app/_BUCK -------------------------------------------------------------------------------- /exercicios/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/android/app/build.gradle -------------------------------------------------------------------------------- /exercicios/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/android/app/build_defs.bzl -------------------------------------------------------------------------------- /exercicios/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/android/app/debug.keystore -------------------------------------------------------------------------------- /exercicios/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /exercicios/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/android/build.gradle -------------------------------------------------------------------------------- /exercicios/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/android/gradle.properties -------------------------------------------------------------------------------- /exercicios/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/android/gradlew -------------------------------------------------------------------------------- /exercicios/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/android/gradlew.bat -------------------------------------------------------------------------------- /exercicios/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/android/settings.gradle -------------------------------------------------------------------------------- /exercicios/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/app.json -------------------------------------------------------------------------------- /exercicios/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/babel.config.js -------------------------------------------------------------------------------- /exercicios/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/index.js -------------------------------------------------------------------------------- /exercicios/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/ios/Podfile -------------------------------------------------------------------------------- /exercicios/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/ios/Podfile.lock -------------------------------------------------------------------------------- /exercicios/ios/exercicios-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/ios/exercicios-tvOS/Info.plist -------------------------------------------------------------------------------- /exercicios/ios/exercicios-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/ios/exercicios-tvOSTests/Info.plist -------------------------------------------------------------------------------- /exercicios/ios/exercicios/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/ios/exercicios/AppDelegate.h -------------------------------------------------------------------------------- /exercicios/ios/exercicios/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/ios/exercicios/AppDelegate.m -------------------------------------------------------------------------------- /exercicios/ios/exercicios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/ios/exercicios/Info.plist -------------------------------------------------------------------------------- /exercicios/ios/exercicios/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/ios/exercicios/main.m -------------------------------------------------------------------------------- /exercicios/ios/exerciciosTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/ios/exerciciosTests/Info.plist -------------------------------------------------------------------------------- /exercicios/ios/exerciciosTests/exerciciosTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/ios/exerciciosTests/exerciciosTests.m -------------------------------------------------------------------------------- /exercicios/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/metro.config.js -------------------------------------------------------------------------------- /exercicios/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/package-lock.json -------------------------------------------------------------------------------- /exercicios/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/package.json -------------------------------------------------------------------------------- /exercicios/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/App.js -------------------------------------------------------------------------------- /exercicios/src/components/Aleatorio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/Aleatorio.js -------------------------------------------------------------------------------- /exercicios/src/components/Botao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/Botao.js -------------------------------------------------------------------------------- /exercicios/src/components/Contador.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/Contador.js -------------------------------------------------------------------------------- /exercicios/src/components/Diferenciar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/Diferenciar.js -------------------------------------------------------------------------------- /exercicios/src/components/DigiteSeuNome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/DigiteSeuNome.js -------------------------------------------------------------------------------- /exercicios/src/components/If.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/If.js -------------------------------------------------------------------------------- /exercicios/src/components/MinMax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/MinMax.js -------------------------------------------------------------------------------- /exercicios/src/components/Multi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/Multi.js -------------------------------------------------------------------------------- /exercicios/src/components/ParImpar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/ParImpar.js -------------------------------------------------------------------------------- /exercicios/src/components/Primeiro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/Primeiro.js -------------------------------------------------------------------------------- /exercicios/src/components/Titulo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/Titulo.js -------------------------------------------------------------------------------- /exercicios/src/components/UsuarioLogado.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/UsuarioLogado.js -------------------------------------------------------------------------------- /exercicios/src/components/contador/ContadorV2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/contador/ContadorV2.js -------------------------------------------------------------------------------- /exercicios/src/components/direta/Filho.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/direta/Filho.js -------------------------------------------------------------------------------- /exercicios/src/components/direta/Pai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/direta/Pai.js -------------------------------------------------------------------------------- /exercicios/src/components/estilo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/estilo.js -------------------------------------------------------------------------------- /exercicios/src/components/indireta/Filho.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/indireta/Filho.js -------------------------------------------------------------------------------- /exercicios/src/components/indireta/Pai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/indireta/Pai.js -------------------------------------------------------------------------------- /exercicios/src/components/layout/FlexboxV1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/layout/FlexboxV1.js -------------------------------------------------------------------------------- /exercicios/src/components/layout/FlexboxV2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/layout/FlexboxV2.js -------------------------------------------------------------------------------- /exercicios/src/components/layout/FlexboxV3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/layout/FlexboxV3.js -------------------------------------------------------------------------------- /exercicios/src/components/layout/FlexboxV4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/layout/FlexboxV4.js -------------------------------------------------------------------------------- /exercicios/src/components/layout/Quadrado.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/layout/Quadrado.js -------------------------------------------------------------------------------- /exercicios/src/components/mega/Mega.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/mega/Mega.js -------------------------------------------------------------------------------- /exercicios/src/components/mega/MegaNumero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/mega/MegaNumero.js -------------------------------------------------------------------------------- /exercicios/src/components/produtos/produtos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/produtos/produtos.js -------------------------------------------------------------------------------- /exercicios/src/components/relacao/Familia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/relacao/Familia.js -------------------------------------------------------------------------------- /exercicios/src/components/relacao/Membro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/exercicios/src/components/relacao/Membro.js -------------------------------------------------------------------------------- /lambe/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /lambe/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/.buckconfig -------------------------------------------------------------------------------- /lambe/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/.firebaserc -------------------------------------------------------------------------------- /lambe/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/.flowconfig -------------------------------------------------------------------------------- /lambe/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /lambe/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/.gitignore -------------------------------------------------------------------------------- /lambe/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /lambe/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/android/app/BUCK -------------------------------------------------------------------------------- /lambe/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/android/app/build.gradle -------------------------------------------------------------------------------- /lambe/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /lambe/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /lambe/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /lambe/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/android/build.gradle -------------------------------------------------------------------------------- /lambe/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/android/gradle.properties -------------------------------------------------------------------------------- /lambe/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /lambe/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/android/gradlew -------------------------------------------------------------------------------- /lambe/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/android/gradlew.bat -------------------------------------------------------------------------------- /lambe/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/android/keystores/BUCK -------------------------------------------------------------------------------- /lambe/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/android/settings.gradle -------------------------------------------------------------------------------- /lambe/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/app.json -------------------------------------------------------------------------------- /lambe/assets/fonts/shelter.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/assets/fonts/shelter.otf -------------------------------------------------------------------------------- /lambe/assets/imgs/boat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/assets/imgs/boat.jpg -------------------------------------------------------------------------------- /lambe/assets/imgs/bw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/assets/imgs/bw.jpg -------------------------------------------------------------------------------- /lambe/assets/imgs/fence.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/assets/imgs/fence.jpg -------------------------------------------------------------------------------- /lambe/assets/imgs/gate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/assets/imgs/gate.jpg -------------------------------------------------------------------------------- /lambe/assets/imgs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/assets/imgs/icon.png -------------------------------------------------------------------------------- /lambe/firebase.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lambe/functions/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /lambe/functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/functions/index.js -------------------------------------------------------------------------------- /lambe/functions/lambe-bedee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/functions/lambe-bedee.json -------------------------------------------------------------------------------- /lambe/functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/functions/package-lock.json -------------------------------------------------------------------------------- /lambe/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/functions/package.json -------------------------------------------------------------------------------- /lambe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/index.js -------------------------------------------------------------------------------- /lambe/ios/lambe-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/ios/lambe-tvOS/Info.plist -------------------------------------------------------------------------------- /lambe/ios/lambe-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/ios/lambe-tvOSTests/Info.plist -------------------------------------------------------------------------------- /lambe/ios/lambe.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/ios/lambe.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /lambe/ios/lambe/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/ios/lambe/AppDelegate.h -------------------------------------------------------------------------------- /lambe/ios/lambe/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/ios/lambe/AppDelegate.m -------------------------------------------------------------------------------- /lambe/ios/lambe/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/ios/lambe/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /lambe/ios/lambe/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/ios/lambe/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /lambe/ios/lambe/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/ios/lambe/Info.plist -------------------------------------------------------------------------------- /lambe/ios/lambe/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/ios/lambe/main.m -------------------------------------------------------------------------------- /lambe/ios/lambeTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/ios/lambeTests/Info.plist -------------------------------------------------------------------------------- /lambe/ios/lambeTests/lambeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/ios/lambeTests/lambeTests.m -------------------------------------------------------------------------------- /lambe/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/package-lock.json -------------------------------------------------------------------------------- /lambe/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/package.json -------------------------------------------------------------------------------- /lambe/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/src/App.js -------------------------------------------------------------------------------- /lambe/src/Navigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/src/Navigator.js -------------------------------------------------------------------------------- /lambe/src/components/AddComment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/src/components/AddComment.js -------------------------------------------------------------------------------- /lambe/src/components/Author.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/src/components/Author.js -------------------------------------------------------------------------------- /lambe/src/components/Comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/src/components/Comments.js -------------------------------------------------------------------------------- /lambe/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/src/components/Header.js -------------------------------------------------------------------------------- /lambe/src/components/Post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/src/components/Post.js -------------------------------------------------------------------------------- /lambe/src/screens/AddPhoto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/src/screens/AddPhoto.js -------------------------------------------------------------------------------- /lambe/src/screens/Feed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/src/screens/Feed.js -------------------------------------------------------------------------------- /lambe/src/screens/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/src/screens/Login.js -------------------------------------------------------------------------------- /lambe/src/screens/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/src/screens/Profile.js -------------------------------------------------------------------------------- /lambe/src/screens/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/src/screens/Register.js -------------------------------------------------------------------------------- /lambe/src/screens/Splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/src/screens/Splash.js -------------------------------------------------------------------------------- /lambe/src/store/actions/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/src/store/actions/actionTypes.js -------------------------------------------------------------------------------- /lambe/src/store/actions/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/src/store/actions/message.js -------------------------------------------------------------------------------- /lambe/src/store/actions/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/src/store/actions/posts.js -------------------------------------------------------------------------------- /lambe/src/store/actions/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/src/store/actions/user.js -------------------------------------------------------------------------------- /lambe/src/store/reducers/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/src/store/reducers/message.js -------------------------------------------------------------------------------- /lambe/src/store/reducers/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/src/store/reducers/posts.js -------------------------------------------------------------------------------- /lambe/src/store/reducers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/src/store/reducers/user.js -------------------------------------------------------------------------------- /lambe/src/store/storeConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/src/store/storeConfig.js -------------------------------------------------------------------------------- /lambe/tempCodeRunnerFile.javascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/tempCodeRunnerFile.javascript -------------------------------------------------------------------------------- /lambe/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/lambe/yarn.lock -------------------------------------------------------------------------------- /legado/exercicios/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /legado/exercicios/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/.buckconfig -------------------------------------------------------------------------------- /legado/exercicios/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/.flowconfig -------------------------------------------------------------------------------- /legado/exercicios/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /legado/exercicios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/.gitignore -------------------------------------------------------------------------------- /legado/exercicios/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /legado/exercicios/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/android/app/BUCK -------------------------------------------------------------------------------- /legado/exercicios/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/android/app/build.gradle -------------------------------------------------------------------------------- /legado/exercicios/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /legado/exercicios/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/android/build.gradle -------------------------------------------------------------------------------- /legado/exercicios/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/android/gradle.properties -------------------------------------------------------------------------------- /legado/exercicios/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/android/gradlew -------------------------------------------------------------------------------- /legado/exercicios/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/android/gradlew.bat -------------------------------------------------------------------------------- /legado/exercicios/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/android/keystores/BUCK -------------------------------------------------------------------------------- /legado/exercicios/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'exercicios' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /legado/exercicios/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/app.json -------------------------------------------------------------------------------- /legado/exercicios/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/index.js -------------------------------------------------------------------------------- /legado/exercicios/ios/exercicios-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/ios/exercicios-tvOS/Info.plist -------------------------------------------------------------------------------- /legado/exercicios/ios/exercicios/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/ios/exercicios/AppDelegate.h -------------------------------------------------------------------------------- /legado/exercicios/ios/exercicios/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/ios/exercicios/AppDelegate.m -------------------------------------------------------------------------------- /legado/exercicios/ios/exercicios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/ios/exercicios/Info.plist -------------------------------------------------------------------------------- /legado/exercicios/ios/exercicios/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/ios/exercicios/main.m -------------------------------------------------------------------------------- /legado/exercicios/ios/exerciciosTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/ios/exerciciosTests/Info.plist -------------------------------------------------------------------------------- /legado/exercicios/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/package-lock.json -------------------------------------------------------------------------------- /legado/exercicios/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/package.json -------------------------------------------------------------------------------- /legado/exercicios/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/src/App.js -------------------------------------------------------------------------------- /legado/exercicios/src/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/src/Menu.js -------------------------------------------------------------------------------- /legado/exercicios/src/componentes/Contador.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/src/componentes/Contador.js -------------------------------------------------------------------------------- /legado/exercicios/src/componentes/Evento.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/src/componentes/Evento.js -------------------------------------------------------------------------------- /legado/exercicios/src/componentes/Flex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/src/componentes/Flex.js -------------------------------------------------------------------------------- /legado/exercicios/src/componentes/If.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/src/componentes/If.js -------------------------------------------------------------------------------- /legado/exercicios/src/componentes/ListaFlex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/src/componentes/ListaFlex.js -------------------------------------------------------------------------------- /legado/exercicios/src/componentes/Multi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/src/componentes/Multi.js -------------------------------------------------------------------------------- /legado/exercicios/src/componentes/ParImpar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/src/componentes/ParImpar.js -------------------------------------------------------------------------------- /legado/exercicios/src/componentes/Plataformas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/src/componentes/Plataformas.js -------------------------------------------------------------------------------- /legado/exercicios/src/componentes/Simples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/src/componentes/Simples.js -------------------------------------------------------------------------------- /legado/exercicios/src/estilo/Padrao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/src/estilo/Padrao.js -------------------------------------------------------------------------------- /legado/exercicios/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/legado/exercicios/yarn.lock -------------------------------------------------------------------------------- /mines/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /mines/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/.buckconfig -------------------------------------------------------------------------------- /mines/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/.flowconfig -------------------------------------------------------------------------------- /mines/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /mines/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/.gitignore -------------------------------------------------------------------------------- /mines/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /mines/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/App.js -------------------------------------------------------------------------------- /mines/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/android/app/BUCK -------------------------------------------------------------------------------- /mines/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/android/app/build.gradle -------------------------------------------------------------------------------- /mines/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /mines/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /mines/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /mines/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/android/build.gradle -------------------------------------------------------------------------------- /mines/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/android/gradle.properties -------------------------------------------------------------------------------- /mines/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /mines/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/android/gradlew -------------------------------------------------------------------------------- /mines/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/android/gradlew.bat -------------------------------------------------------------------------------- /mines/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/android/keystores/BUCK -------------------------------------------------------------------------------- /mines/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'mines' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /mines/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/app.json -------------------------------------------------------------------------------- /mines/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/index.js -------------------------------------------------------------------------------- /mines/ios/mines-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/ios/mines-tvOS/Info.plist -------------------------------------------------------------------------------- /mines/ios/mines-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/ios/mines-tvOSTests/Info.plist -------------------------------------------------------------------------------- /mines/ios/mines.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/ios/mines.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /mines/ios/mines/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/ios/mines/AppDelegate.h -------------------------------------------------------------------------------- /mines/ios/mines/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/ios/mines/AppDelegate.m -------------------------------------------------------------------------------- /mines/ios/mines/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/ios/mines/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /mines/ios/mines/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/ios/mines/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /mines/ios/mines/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/ios/mines/Info.plist -------------------------------------------------------------------------------- /mines/ios/mines/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/ios/mines/main.m -------------------------------------------------------------------------------- /mines/ios/minesTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/ios/minesTests/Info.plist -------------------------------------------------------------------------------- /mines/ios/minesTests/minesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/ios/minesTests/minesTests.m -------------------------------------------------------------------------------- /mines/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/package.json -------------------------------------------------------------------------------- /mines/src/components/Field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/src/components/Field.js -------------------------------------------------------------------------------- /mines/src/components/Flag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/src/components/Flag.js -------------------------------------------------------------------------------- /mines/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/src/components/Header.js -------------------------------------------------------------------------------- /mines/src/components/Mine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/src/components/Mine.js -------------------------------------------------------------------------------- /mines/src/components/MineField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/src/components/MineField.js -------------------------------------------------------------------------------- /mines/src/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/src/functions.js -------------------------------------------------------------------------------- /mines/src/params.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/src/params.js -------------------------------------------------------------------------------- /mines/src/screens/LevelSelection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/src/screens/LevelSelection.js -------------------------------------------------------------------------------- /mines/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/mines/yarn.lock -------------------------------------------------------------------------------- /navegacao/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/.buckconfig -------------------------------------------------------------------------------- /navegacao/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /navegacao/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/.flowconfig -------------------------------------------------------------------------------- /navegacao/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /navegacao/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/.gitignore -------------------------------------------------------------------------------- /navegacao/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/.prettierrc.js -------------------------------------------------------------------------------- /navegacao/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /navegacao/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/App.js -------------------------------------------------------------------------------- /navegacao/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/__tests__/App-test.js -------------------------------------------------------------------------------- /navegacao/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/android/app/_BUCK -------------------------------------------------------------------------------- /navegacao/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/android/app/build.gradle -------------------------------------------------------------------------------- /navegacao/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/android/app/build_defs.bzl -------------------------------------------------------------------------------- /navegacao/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/android/app/debug.keystore -------------------------------------------------------------------------------- /navegacao/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /navegacao/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/android/build.gradle -------------------------------------------------------------------------------- /navegacao/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/android/gradle.properties -------------------------------------------------------------------------------- /navegacao/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/android/gradlew -------------------------------------------------------------------------------- /navegacao/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/android/gradlew.bat -------------------------------------------------------------------------------- /navegacao/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/android/settings.gradle -------------------------------------------------------------------------------- /navegacao/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/app.json -------------------------------------------------------------------------------- /navegacao/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/babel.config.js -------------------------------------------------------------------------------- /navegacao/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/index.js -------------------------------------------------------------------------------- /navegacao/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/ios/Podfile -------------------------------------------------------------------------------- /navegacao/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/ios/Podfile.lock -------------------------------------------------------------------------------- /navegacao/ios/navegacao-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/ios/navegacao-tvOS/Info.plist -------------------------------------------------------------------------------- /navegacao/ios/navegacao-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/ios/navegacao-tvOSTests/Info.plist -------------------------------------------------------------------------------- /navegacao/ios/navegacao/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/ios/navegacao/AppDelegate.h -------------------------------------------------------------------------------- /navegacao/ios/navegacao/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/ios/navegacao/AppDelegate.m -------------------------------------------------------------------------------- /navegacao/ios/navegacao/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/ios/navegacao/Info.plist -------------------------------------------------------------------------------- /navegacao/ios/navegacao/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/ios/navegacao/main.m -------------------------------------------------------------------------------- /navegacao/ios/navegacaoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/ios/navegacaoTests/Info.plist -------------------------------------------------------------------------------- /navegacao/ios/navegacaoTests/navegacaoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/ios/navegacaoTests/navegacaoTests.m -------------------------------------------------------------------------------- /navegacao/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/metro.config.js -------------------------------------------------------------------------------- /navegacao/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/package-lock.json -------------------------------------------------------------------------------- /navegacao/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/package.json -------------------------------------------------------------------------------- /navegacao/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/src/App.js -------------------------------------------------------------------------------- /navegacao/src/components/PassoStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/src/components/PassoStack.js -------------------------------------------------------------------------------- /navegacao/src/components/TextoCentral.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/src/components/TextoCentral.js -------------------------------------------------------------------------------- /navegacao/src/navegacao/Drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/src/navegacao/Drawer.js -------------------------------------------------------------------------------- /navegacao/src/navegacao/Stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/src/navegacao/Stack.js -------------------------------------------------------------------------------- /navegacao/src/navegacao/Tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/src/navegacao/Tab.js -------------------------------------------------------------------------------- /navegacao/src/navegacao/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/src/navegacao/index.js -------------------------------------------------------------------------------- /navegacao/src/views/TelaA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/src/views/TelaA.js -------------------------------------------------------------------------------- /navegacao/src/views/TelaB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/src/views/TelaB.js -------------------------------------------------------------------------------- /navegacao/src/views/TelaC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/src/views/TelaC.js -------------------------------------------------------------------------------- /navegacao/src/views/TelaD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/navegacao/src/views/TelaD.js -------------------------------------------------------------------------------- /rncrud/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/.buckconfig -------------------------------------------------------------------------------- /rncrud/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /rncrud/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/.flowconfig -------------------------------------------------------------------------------- /rncrud/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /rncrud/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/.gitignore -------------------------------------------------------------------------------- /rncrud/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/.prettierrc.js -------------------------------------------------------------------------------- /rncrud/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /rncrud/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/__tests__/App-test.js -------------------------------------------------------------------------------- /rncrud/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/android/app/_BUCK -------------------------------------------------------------------------------- /rncrud/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/android/app/build.gradle -------------------------------------------------------------------------------- /rncrud/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/android/app/build_defs.bzl -------------------------------------------------------------------------------- /rncrud/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/android/app/debug.keystore -------------------------------------------------------------------------------- /rncrud/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /rncrud/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /rncrud/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /rncrud/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/android/build.gradle -------------------------------------------------------------------------------- /rncrud/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/android/gradle.properties -------------------------------------------------------------------------------- /rncrud/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /rncrud/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/android/gradlew -------------------------------------------------------------------------------- /rncrud/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/android/gradlew.bat -------------------------------------------------------------------------------- /rncrud/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/android/settings.gradle -------------------------------------------------------------------------------- /rncrud/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/app.json -------------------------------------------------------------------------------- /rncrud/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/babel.config.js -------------------------------------------------------------------------------- /rncrud/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/index.js -------------------------------------------------------------------------------- /rncrud/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/ios/Podfile -------------------------------------------------------------------------------- /rncrud/ios/rncrud-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/ios/rncrud-tvOS/Info.plist -------------------------------------------------------------------------------- /rncrud/ios/rncrud-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/ios/rncrud-tvOSTests/Info.plist -------------------------------------------------------------------------------- /rncrud/ios/rncrud.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/ios/rncrud.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /rncrud/ios/rncrud/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/ios/rncrud/AppDelegate.h -------------------------------------------------------------------------------- /rncrud/ios/rncrud/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/ios/rncrud/AppDelegate.m -------------------------------------------------------------------------------- /rncrud/ios/rncrud/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/ios/rncrud/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /rncrud/ios/rncrud/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/ios/rncrud/Info.plist -------------------------------------------------------------------------------- /rncrud/ios/rncrud/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/ios/rncrud/LaunchScreen.storyboard -------------------------------------------------------------------------------- /rncrud/ios/rncrud/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/ios/rncrud/main.m -------------------------------------------------------------------------------- /rncrud/ios/rncrudTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/ios/rncrudTests/Info.plist -------------------------------------------------------------------------------- /rncrud/ios/rncrudTests/rncrudTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/ios/rncrudTests/rncrudTests.m -------------------------------------------------------------------------------- /rncrud/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/metro.config.js -------------------------------------------------------------------------------- /rncrud/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/package-lock.json -------------------------------------------------------------------------------- /rncrud/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/package.json -------------------------------------------------------------------------------- /rncrud/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/src/App.js -------------------------------------------------------------------------------- /rncrud/src/context/UsersContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/src/context/UsersContext.js -------------------------------------------------------------------------------- /rncrud/src/data/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/src/data/users.js -------------------------------------------------------------------------------- /rncrud/src/views/UserForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/src/views/UserForm.js -------------------------------------------------------------------------------- /rncrud/src/views/UserList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/src/views/UserList.js -------------------------------------------------------------------------------- /rncrud/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/rncrud/yarn.lock -------------------------------------------------------------------------------- /tasks-backend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | *.log -------------------------------------------------------------------------------- /tasks-backend/api/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks-backend/api/auth.js -------------------------------------------------------------------------------- /tasks-backend/api/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks-backend/api/task.js -------------------------------------------------------------------------------- /tasks-backend/api/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks-backend/api/user.js -------------------------------------------------------------------------------- /tasks-backend/config/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks-backend/config/db.js -------------------------------------------------------------------------------- /tasks-backend/config/middlewares.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks-backend/config/middlewares.js -------------------------------------------------------------------------------- /tasks-backend/config/passport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks-backend/config/passport.js -------------------------------------------------------------------------------- /tasks-backend/config/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks-backend/config/routes.js -------------------------------------------------------------------------------- /tasks-backend/env_file: -------------------------------------------------------------------------------- 1 | // Renomear para .env 2 | 3 | module.exports = { 4 | authSecret: '' 5 | } -------------------------------------------------------------------------------- /tasks-backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks-backend/index.js -------------------------------------------------------------------------------- /tasks-backend/knexfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks-backend/knexfile.js -------------------------------------------------------------------------------- /tasks-backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks-backend/package-lock.json -------------------------------------------------------------------------------- /tasks-backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks-backend/package.json -------------------------------------------------------------------------------- /tasks-backend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks-backend/yarn.lock -------------------------------------------------------------------------------- /tasks/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /tasks/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/.buckconfig -------------------------------------------------------------------------------- /tasks/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/.flowconfig -------------------------------------------------------------------------------- /tasks/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /tasks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/.gitignore -------------------------------------------------------------------------------- /tasks/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tasks/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/android/app/BUCK -------------------------------------------------------------------------------- /tasks/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/android/app/build.gradle -------------------------------------------------------------------------------- /tasks/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /tasks/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /tasks/android/app/src/main/assets/fonts/Lato.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/android/app/src/main/assets/fonts/Lato.ttf -------------------------------------------------------------------------------- /tasks/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/android/build.gradle -------------------------------------------------------------------------------- /tasks/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/android/gradle.properties -------------------------------------------------------------------------------- /tasks/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/android/gradlew -------------------------------------------------------------------------------- /tasks/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/android/gradlew.bat -------------------------------------------------------------------------------- /tasks/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/android/keystores/BUCK -------------------------------------------------------------------------------- /tasks/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/android/settings.gradle -------------------------------------------------------------------------------- /tasks/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/app.json -------------------------------------------------------------------------------- /tasks/assets/fonts/Lato.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/assets/fonts/Lato.ttf -------------------------------------------------------------------------------- /tasks/assets/imgs/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/assets/imgs/login.jpg -------------------------------------------------------------------------------- /tasks/assets/imgs/month.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/assets/imgs/month.jpg -------------------------------------------------------------------------------- /tasks/assets/imgs/today.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/assets/imgs/today.jpg -------------------------------------------------------------------------------- /tasks/assets/imgs/tomorrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/assets/imgs/tomorrow.jpg -------------------------------------------------------------------------------- /tasks/assets/imgs/week.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/assets/imgs/week.jpg -------------------------------------------------------------------------------- /tasks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/index.js -------------------------------------------------------------------------------- /tasks/ios/tasks-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/ios/tasks-tvOS/Info.plist -------------------------------------------------------------------------------- /tasks/ios/tasks-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/ios/tasks-tvOSTests/Info.plist -------------------------------------------------------------------------------- /tasks/ios/tasks.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/ios/tasks.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tasks/ios/tasks/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/ios/tasks/AppDelegate.h -------------------------------------------------------------------------------- /tasks/ios/tasks/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/ios/tasks/AppDelegate.m -------------------------------------------------------------------------------- /tasks/ios/tasks/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/ios/tasks/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /tasks/ios/tasks/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/ios/tasks/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /tasks/ios/tasks/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/ios/tasks/Info.plist -------------------------------------------------------------------------------- /tasks/ios/tasks/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/ios/tasks/main.m -------------------------------------------------------------------------------- /tasks/ios/tasksTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/ios/tasksTests/Info.plist -------------------------------------------------------------------------------- /tasks/ios/tasksTests/tasksTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/ios/tasksTests/tasksTests.m -------------------------------------------------------------------------------- /tasks/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/package-lock.json -------------------------------------------------------------------------------- /tasks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/package.json -------------------------------------------------------------------------------- /tasks/src/Navigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/src/Navigator.js -------------------------------------------------------------------------------- /tasks/src/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/src/common.js -------------------------------------------------------------------------------- /tasks/src/commonStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/src/commonStyles.js -------------------------------------------------------------------------------- /tasks/src/components/AuthInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/src/components/AuthInput.js -------------------------------------------------------------------------------- /tasks/src/components/Task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/src/components/Task.js -------------------------------------------------------------------------------- /tasks/src/screens/AddTask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/src/screens/AddTask.js -------------------------------------------------------------------------------- /tasks/src/screens/Agenda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/src/screens/Agenda.js -------------------------------------------------------------------------------- /tasks/src/screens/Auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/src/screens/Auth.js -------------------------------------------------------------------------------- /tasks/src/screens/AuthOrApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/src/screens/AuthOrApp.js -------------------------------------------------------------------------------- /tasks/src/screens/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/src/screens/Menu.js -------------------------------------------------------------------------------- /tasks/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks/yarn.lock -------------------------------------------------------------------------------- /tasks2020/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/.buckconfig -------------------------------------------------------------------------------- /tasks2020/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /tasks2020/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/.flowconfig -------------------------------------------------------------------------------- /tasks2020/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /tasks2020/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/.gitignore -------------------------------------------------------------------------------- /tasks2020/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/.prettierrc.js -------------------------------------------------------------------------------- /tasks2020/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tasks2020/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/App.js -------------------------------------------------------------------------------- /tasks2020/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/__tests__/App-test.js -------------------------------------------------------------------------------- /tasks2020/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/android/app/_BUCK -------------------------------------------------------------------------------- /tasks2020/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/android/app/build.gradle -------------------------------------------------------------------------------- /tasks2020/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/android/app/build_defs.bzl -------------------------------------------------------------------------------- /tasks2020/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/android/app/debug.keystore -------------------------------------------------------------------------------- /tasks2020/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /tasks2020/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/android/build.gradle -------------------------------------------------------------------------------- /tasks2020/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/android/gradle.properties -------------------------------------------------------------------------------- /tasks2020/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/android/gradlew -------------------------------------------------------------------------------- /tasks2020/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/android/gradlew.bat -------------------------------------------------------------------------------- /tasks2020/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/android/settings.gradle -------------------------------------------------------------------------------- /tasks2020/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/app.json -------------------------------------------------------------------------------- /tasks2020/assets/fonts/Lato.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/assets/fonts/Lato.ttf -------------------------------------------------------------------------------- /tasks2020/assets/imgs/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/assets/imgs/login.jpg -------------------------------------------------------------------------------- /tasks2020/assets/imgs/month.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/assets/imgs/month.jpg -------------------------------------------------------------------------------- /tasks2020/assets/imgs/today.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/assets/imgs/today.jpg -------------------------------------------------------------------------------- /tasks2020/assets/imgs/tomorrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/assets/imgs/tomorrow.jpg -------------------------------------------------------------------------------- /tasks2020/assets/imgs/week.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/assets/imgs/week.jpg -------------------------------------------------------------------------------- /tasks2020/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/babel.config.js -------------------------------------------------------------------------------- /tasks2020/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/index.js -------------------------------------------------------------------------------- /tasks2020/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/ios/Podfile -------------------------------------------------------------------------------- /tasks2020/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/ios/Podfile.lock -------------------------------------------------------------------------------- /tasks2020/ios/tasks-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/ios/tasks-tvOS/Info.plist -------------------------------------------------------------------------------- /tasks2020/ios/tasks-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/ios/tasks-tvOSTests/Info.plist -------------------------------------------------------------------------------- /tasks2020/ios/tasks.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/ios/tasks.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tasks2020/ios/tasks/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/ios/tasks/AppDelegate.h -------------------------------------------------------------------------------- /tasks2020/ios/tasks/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/ios/tasks/AppDelegate.m -------------------------------------------------------------------------------- /tasks2020/ios/tasks/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/ios/tasks/Info.plist -------------------------------------------------------------------------------- /tasks2020/ios/tasks/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/ios/tasks/main.m -------------------------------------------------------------------------------- /tasks2020/ios/tasksTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/ios/tasksTests/Info.plist -------------------------------------------------------------------------------- /tasks2020/ios/tasksTests/tasksTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/ios/tasksTests/tasksTests.m -------------------------------------------------------------------------------- /tasks2020/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/metro.config.js -------------------------------------------------------------------------------- /tasks2020/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/package-lock.json -------------------------------------------------------------------------------- /tasks2020/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/package.json -------------------------------------------------------------------------------- /tasks2020/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/react-native.config.js -------------------------------------------------------------------------------- /tasks2020/src/Navigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/src/Navigator.js -------------------------------------------------------------------------------- /tasks2020/src/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/src/common.js -------------------------------------------------------------------------------- /tasks2020/src/commonStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/src/commonStyles.js -------------------------------------------------------------------------------- /tasks2020/src/components/AuthInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/src/components/AuthInput.js -------------------------------------------------------------------------------- /tasks2020/src/components/Task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/src/components/Task.js -------------------------------------------------------------------------------- /tasks2020/src/screens/AddTask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/src/screens/AddTask.js -------------------------------------------------------------------------------- /tasks2020/src/screens/Auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/src/screens/Auth.js -------------------------------------------------------------------------------- /tasks2020/src/screens/AuthOrApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/src/screens/AuthOrApp.js -------------------------------------------------------------------------------- /tasks2020/src/screens/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/src/screens/Menu.js -------------------------------------------------------------------------------- /tasks2020/src/screens/TaskList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020/src/screens/TaskList.js -------------------------------------------------------------------------------- /tasks2020Navigation5/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/.buckconfig -------------------------------------------------------------------------------- /tasks2020Navigation5/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /tasks2020Navigation5/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/.flowconfig -------------------------------------------------------------------------------- /tasks2020Navigation5/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /tasks2020Navigation5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/.gitignore -------------------------------------------------------------------------------- /tasks2020Navigation5/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/.prettierrc.js -------------------------------------------------------------------------------- /tasks2020Navigation5/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tasks2020Navigation5/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/App.js -------------------------------------------------------------------------------- /tasks2020Navigation5/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/__tests__/App-test.js -------------------------------------------------------------------------------- /tasks2020Navigation5/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/android/app/_BUCK -------------------------------------------------------------------------------- /tasks2020Navigation5/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/android/app/build.gradle -------------------------------------------------------------------------------- /tasks2020Navigation5/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/android/build.gradle -------------------------------------------------------------------------------- /tasks2020Navigation5/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/android/gradle.properties -------------------------------------------------------------------------------- /tasks2020Navigation5/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/android/gradlew -------------------------------------------------------------------------------- /tasks2020Navigation5/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/android/gradlew.bat -------------------------------------------------------------------------------- /tasks2020Navigation5/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/android/settings.gradle -------------------------------------------------------------------------------- /tasks2020Navigation5/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/app.json -------------------------------------------------------------------------------- /tasks2020Navigation5/assets/fonts/Lato.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/assets/fonts/Lato.ttf -------------------------------------------------------------------------------- /tasks2020Navigation5/assets/imgs/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/assets/imgs/login.jpg -------------------------------------------------------------------------------- /tasks2020Navigation5/assets/imgs/month.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/assets/imgs/month.jpg -------------------------------------------------------------------------------- /tasks2020Navigation5/assets/imgs/today.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/assets/imgs/today.jpg -------------------------------------------------------------------------------- /tasks2020Navigation5/assets/imgs/tomorrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/assets/imgs/tomorrow.jpg -------------------------------------------------------------------------------- /tasks2020Navigation5/assets/imgs/week.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/assets/imgs/week.jpg -------------------------------------------------------------------------------- /tasks2020Navigation5/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/babel.config.js -------------------------------------------------------------------------------- /tasks2020Navigation5/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/index.js -------------------------------------------------------------------------------- /tasks2020Navigation5/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/index.md -------------------------------------------------------------------------------- /tasks2020Navigation5/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/ios/Podfile -------------------------------------------------------------------------------- /tasks2020Navigation5/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/ios/Podfile.lock -------------------------------------------------------------------------------- /tasks2020Navigation5/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/metro.config.js -------------------------------------------------------------------------------- /tasks2020Navigation5/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/package-lock.json -------------------------------------------------------------------------------- /tasks2020Navigation5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/package.json -------------------------------------------------------------------------------- /tasks2020Navigation5/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/react-native.config.js -------------------------------------------------------------------------------- /tasks2020Navigation5/src/Navigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/src/Navigator.js -------------------------------------------------------------------------------- /tasks2020Navigation5/src/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/src/common.js -------------------------------------------------------------------------------- /tasks2020Navigation5/src/commonStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/src/commonStyles.js -------------------------------------------------------------------------------- /tasks2020Navigation5/src/components/Task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/src/components/Task.js -------------------------------------------------------------------------------- /tasks2020Navigation5/src/screens/AddTask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/src/screens/AddTask.js -------------------------------------------------------------------------------- /tasks2020Navigation5/src/screens/Auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/src/screens/Auth.js -------------------------------------------------------------------------------- /tasks2020Navigation5/src/screens/AuthOrApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/src/screens/AuthOrApp.js -------------------------------------------------------------------------------- /tasks2020Navigation5/src/screens/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/src/screens/Menu.js -------------------------------------------------------------------------------- /tasks2020Navigation5/src/screens/TaskList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/src/screens/TaskList.js -------------------------------------------------------------------------------- /tasks2020Navigation5/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cod3rcursos/curso-react-native/HEAD/tasks2020Navigation5/yarn.lock --------------------------------------------------------------------------------