├── .buckconfig ├── .eslintrc.json ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .graphqlconfig.yml ├── .prettierrc ├── .watchmanconfig ├── __tests__ └── App-test.js ├── amplify ├── .config │ └── project-config.json ├── backend │ ├── api │ │ └── messaga │ │ │ ├── parameters.json │ │ │ ├── resolvers │ │ │ ├── Mutation.createJob.req.vtl │ │ │ ├── Mutation.createJob.res.vtl │ │ │ ├── Mutation.deleteJob.req.vtl │ │ │ ├── Mutation.deleteJob.res.vtl │ │ │ ├── Mutation.updateJob.req.vtl │ │ │ ├── Mutation.updateJob.res.vtl │ │ │ ├── Query.getJob.req.vtl │ │ │ ├── Query.getJob.res.vtl │ │ │ ├── Query.listJobs.req.vtl │ │ │ ├── Query.listJobs.res.vtl │ │ │ ├── Subscription.onCreateJob.req.vtl │ │ │ ├── Subscription.onCreateJob.res.vtl │ │ │ ├── Subscription.onDeleteJob.req.vtl │ │ │ ├── Subscription.onDeleteJob.res.vtl │ │ │ ├── Subscription.onUpdateJob.req.vtl │ │ │ └── Subscription.onUpdateJob.res.vtl │ │ │ ├── schema.graphql │ │ │ ├── stacks │ │ │ └── CustomResources.json │ │ │ └── transform.conf.json │ ├── auth │ │ └── messaga04b8326d │ │ │ ├── messaga04b8326d-cloudformation-template.yml │ │ │ └── parameters.json │ └── backend-config.json └── team-provider-info.json ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── 3270Narrow.ttf │ │ │ ├── AntDesign.ttf │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ ├── Fontisto.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── IBM-Logo.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── messaga │ │ │ ├── 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 │ ├── 3270Narrow.ttf │ └── IBM-Logo.ttf ├── aws-exports.js ├── babel.config.js ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── messaga-tvOS │ └── Info.plist ├── messaga-tvOSTests │ └── Info.plist ├── messaga.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── messaga-tvOS.xcscheme │ │ └── messaga.xcscheme ├── messaga.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── messaga │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── messagaTests │ ├── Info.plist │ └── messagaTests.m ├── metro.config.js ├── package.json ├── react-native.config.js ├── src ├── API.js ├── AppNavigator.js ├── components │ ├── AppContainer │ │ ├── bg.png │ │ └── index.js │ ├── Button │ │ └── index.js │ ├── Card │ │ └── index.js │ ├── CardJob │ │ └── index.js │ ├── CardJobDetail │ │ └── index.js │ ├── Header │ │ └── index.js │ ├── Input │ │ └── index.js │ ├── Loading │ │ └── index.js │ ├── Localei18n │ │ └── index.js │ ├── Space │ │ └── index.js │ ├── TabBar │ │ ├── ButtonTab.js │ │ └── index.js │ ├── TextError │ │ └── index.js │ ├── TextLink │ │ └── index.js │ └── index.js ├── constants.js ├── graphql │ ├── mutations.js │ ├── queries.js │ └── subscriptions.js ├── index.js └── screens │ ├── Authenticator │ ├── ConfirmSignUp │ │ └── index.js │ ├── Forgot │ │ └── index.js │ ├── ForgotPassSubmit │ │ └── index.js │ ├── Form │ │ └── index.js │ ├── Hello │ │ └── index.js │ ├── SignIn │ │ └── index.js │ ├── SignUp │ │ └── index.js │ └── index.js │ ├── Jobs │ ├── JobAdd.js │ ├── JobDetail.js │ ├── JobsMain.js │ ├── helper.js │ └── index.js │ ├── User │ └── index.js │ └── index.js └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/.gitignore -------------------------------------------------------------------------------- /.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/.graphqlconfig.yml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/.prettierrc -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/amplify/.config/project-config.json -------------------------------------------------------------------------------- /amplify/backend/api/messaga/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/amplify/backend/api/messaga/parameters.json -------------------------------------------------------------------------------- /amplify/backend/api/messaga/resolvers/Mutation.createJob.req.vtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/amplify/backend/api/messaga/resolvers/Mutation.createJob.req.vtl -------------------------------------------------------------------------------- /amplify/backend/api/messaga/resolvers/Mutation.createJob.res.vtl: -------------------------------------------------------------------------------- 1 | $util.toJson($context.result) -------------------------------------------------------------------------------- /amplify/backend/api/messaga/resolvers/Mutation.deleteJob.req.vtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/amplify/backend/api/messaga/resolvers/Mutation.deleteJob.req.vtl -------------------------------------------------------------------------------- /amplify/backend/api/messaga/resolvers/Mutation.deleteJob.res.vtl: -------------------------------------------------------------------------------- 1 | $util.toJson($context.result) -------------------------------------------------------------------------------- /amplify/backend/api/messaga/resolvers/Mutation.updateJob.req.vtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/amplify/backend/api/messaga/resolvers/Mutation.updateJob.req.vtl -------------------------------------------------------------------------------- /amplify/backend/api/messaga/resolvers/Mutation.updateJob.res.vtl: -------------------------------------------------------------------------------- 1 | $util.toJson($context.result) -------------------------------------------------------------------------------- /amplify/backend/api/messaga/resolvers/Query.getJob.req.vtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/amplify/backend/api/messaga/resolvers/Query.getJob.req.vtl -------------------------------------------------------------------------------- /amplify/backend/api/messaga/resolvers/Query.getJob.res.vtl: -------------------------------------------------------------------------------- 1 | $util.toJson($context.result) -------------------------------------------------------------------------------- /amplify/backend/api/messaga/resolvers/Query.listJobs.req.vtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/amplify/backend/api/messaga/resolvers/Query.listJobs.req.vtl -------------------------------------------------------------------------------- /amplify/backend/api/messaga/resolvers/Query.listJobs.res.vtl: -------------------------------------------------------------------------------- 1 | $util.toJson($ctx.result) -------------------------------------------------------------------------------- /amplify/backend/api/messaga/resolvers/Subscription.onCreateJob.req.vtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/amplify/backend/api/messaga/resolvers/Subscription.onCreateJob.req.vtl -------------------------------------------------------------------------------- /amplify/backend/api/messaga/resolvers/Subscription.onCreateJob.res.vtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/amplify/backend/api/messaga/resolvers/Subscription.onCreateJob.res.vtl -------------------------------------------------------------------------------- /amplify/backend/api/messaga/resolvers/Subscription.onDeleteJob.req.vtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/amplify/backend/api/messaga/resolvers/Subscription.onDeleteJob.req.vtl -------------------------------------------------------------------------------- /amplify/backend/api/messaga/resolvers/Subscription.onDeleteJob.res.vtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/amplify/backend/api/messaga/resolvers/Subscription.onDeleteJob.res.vtl -------------------------------------------------------------------------------- /amplify/backend/api/messaga/resolvers/Subscription.onUpdateJob.req.vtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/amplify/backend/api/messaga/resolvers/Subscription.onUpdateJob.req.vtl -------------------------------------------------------------------------------- /amplify/backend/api/messaga/resolvers/Subscription.onUpdateJob.res.vtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/amplify/backend/api/messaga/resolvers/Subscription.onUpdateJob.res.vtl -------------------------------------------------------------------------------- /amplify/backend/api/messaga/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/amplify/backend/api/messaga/schema.graphql -------------------------------------------------------------------------------- /amplify/backend/api/messaga/stacks/CustomResources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/amplify/backend/api/messaga/stacks/CustomResources.json -------------------------------------------------------------------------------- /amplify/backend/api/messaga/transform.conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": 4 3 | } -------------------------------------------------------------------------------- /amplify/backend/auth/messaga04b8326d/messaga04b8326d-cloudformation-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/amplify/backend/auth/messaga04b8326d/messaga04b8326d-cloudformation-template.yml -------------------------------------------------------------------------------- /amplify/backend/auth/messaga04b8326d/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/amplify/backend/auth/messaga04b8326d/parameters.json -------------------------------------------------------------------------------- /amplify/backend/backend-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/amplify/backend/backend-config.json -------------------------------------------------------------------------------- /amplify/team-provider-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/amplify/team-provider-info.json -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/3270Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/assets/fonts/3270Narrow.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Fontisto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/assets/fonts/Fontisto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/IBM-Logo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/assets/fonts/IBM-Logo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/messaga/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/java/com/messaga/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/messaga/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/java/com/messaga/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/app.json -------------------------------------------------------------------------------- /assets/fonts/3270Narrow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/assets/fonts/3270Narrow.ttf -------------------------------------------------------------------------------- /assets/fonts/IBM-Logo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/assets/fonts/IBM-Logo.ttf -------------------------------------------------------------------------------- /aws-exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/aws-exports.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/messaga-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/ios/messaga-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/messaga-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/ios/messaga-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/messaga.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/ios/messaga.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/messaga.xcodeproj/xcshareddata/xcschemes/messaga-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/ios/messaga.xcodeproj/xcshareddata/xcschemes/messaga-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/messaga.xcodeproj/xcshareddata/xcschemes/messaga.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/ios/messaga.xcodeproj/xcshareddata/xcschemes/messaga.xcscheme -------------------------------------------------------------------------------- /ios/messaga.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/ios/messaga.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/messaga.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/ios/messaga.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/messaga.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/ios/messaga.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/messaga/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/ios/messaga/AppDelegate.h -------------------------------------------------------------------------------- /ios/messaga/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/ios/messaga/AppDelegate.m -------------------------------------------------------------------------------- /ios/messaga/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/ios/messaga/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/messaga/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/ios/messaga/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/messaga/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/ios/messaga/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/messaga/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/ios/messaga/Info.plist -------------------------------------------------------------------------------- /ios/messaga/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/ios/messaga/main.m -------------------------------------------------------------------------------- /ios/messagaTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/ios/messagaTests/Info.plist -------------------------------------------------------------------------------- /ios/messagaTests/messagaTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/ios/messagaTests/messagaTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/package.json -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/react-native.config.js -------------------------------------------------------------------------------- /src/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/API.js -------------------------------------------------------------------------------- /src/AppNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/AppNavigator.js -------------------------------------------------------------------------------- /src/components/AppContainer/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/components/AppContainer/bg.png -------------------------------------------------------------------------------- /src/components/AppContainer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/components/AppContainer/index.js -------------------------------------------------------------------------------- /src/components/Button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/components/Button/index.js -------------------------------------------------------------------------------- /src/components/Card/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/components/Card/index.js -------------------------------------------------------------------------------- /src/components/CardJob/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/components/CardJob/index.js -------------------------------------------------------------------------------- /src/components/CardJobDetail/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/components/CardJobDetail/index.js -------------------------------------------------------------------------------- /src/components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/components/Header/index.js -------------------------------------------------------------------------------- /src/components/Input/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/components/Input/index.js -------------------------------------------------------------------------------- /src/components/Loading/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/components/Loading/index.js -------------------------------------------------------------------------------- /src/components/Localei18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/components/Localei18n/index.js -------------------------------------------------------------------------------- /src/components/Space/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/components/Space/index.js -------------------------------------------------------------------------------- /src/components/TabBar/ButtonTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/components/TabBar/ButtonTab.js -------------------------------------------------------------------------------- /src/components/TabBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/components/TabBar/index.js -------------------------------------------------------------------------------- /src/components/TextError/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/components/TextError/index.js -------------------------------------------------------------------------------- /src/components/TextLink/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/components/TextLink/index.js -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/graphql/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/graphql/mutations.js -------------------------------------------------------------------------------- /src/graphql/queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/graphql/queries.js -------------------------------------------------------------------------------- /src/graphql/subscriptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/graphql/subscriptions.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/index.js -------------------------------------------------------------------------------- /src/screens/Authenticator/ConfirmSignUp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/screens/Authenticator/ConfirmSignUp/index.js -------------------------------------------------------------------------------- /src/screens/Authenticator/Forgot/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/screens/Authenticator/Forgot/index.js -------------------------------------------------------------------------------- /src/screens/Authenticator/ForgotPassSubmit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/screens/Authenticator/ForgotPassSubmit/index.js -------------------------------------------------------------------------------- /src/screens/Authenticator/Form/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/screens/Authenticator/Form/index.js -------------------------------------------------------------------------------- /src/screens/Authenticator/Hello/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/screens/Authenticator/Hello/index.js -------------------------------------------------------------------------------- /src/screens/Authenticator/SignIn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/screens/Authenticator/SignIn/index.js -------------------------------------------------------------------------------- /src/screens/Authenticator/SignUp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/screens/Authenticator/SignUp/index.js -------------------------------------------------------------------------------- /src/screens/Authenticator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/screens/Authenticator/index.js -------------------------------------------------------------------------------- /src/screens/Jobs/JobAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/screens/Jobs/JobAdd.js -------------------------------------------------------------------------------- /src/screens/Jobs/JobDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/screens/Jobs/JobDetail.js -------------------------------------------------------------------------------- /src/screens/Jobs/JobsMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/screens/Jobs/JobsMain.js -------------------------------------------------------------------------------- /src/screens/Jobs/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/screens/Jobs/helper.js -------------------------------------------------------------------------------- /src/screens/Jobs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/screens/Jobs/index.js -------------------------------------------------------------------------------- /src/screens/User/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/screens/User/index.js -------------------------------------------------------------------------------- /src/screens/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/src/screens/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-village/messaga/HEAD/yarn.lock --------------------------------------------------------------------------------