├── .babelrc ├── .buckconfig ├── .eslintrc ├── .flowconfig ├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── .watchmanconfig ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __tests__ └── App.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ ├── index.android.bundle │ │ └── index.android.bundle.meta │ │ ├── java │ │ └── com │ │ │ └── whatsappcloneinreactnative │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── node_modules_reactnavigation_src_views_assets_backicon.png │ │ ├── drawable-mdpi │ │ ├── node_modules_reactnativerouterflux_images_back_chevron.png │ │ ├── node_modules_reactnativerouterflux_images_menu_burger.png │ │ ├── node_modules_reactnavigation_src_views_assets_backicon.png │ │ ├── source_images_ic_add_contact.png │ │ ├── source_images_ic_button_send_sms.png │ │ ├── source_images_ic_chats_contacts.png │ │ └── source_images_ic_photo_camera.png │ │ ├── drawable-xhdpi │ │ └── node_modules_reactnavigation_src_views_assets_backicon.png │ │ ├── drawable-xxhdpi │ │ └── node_modules_reactnavigation_src_views_assets_backicon.png │ │ ├── drawable-xxxhdpi │ │ └── node_modules_reactnavigation_src_views_assets_backicon.png │ │ ├── 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 ├── index.js ├── ios ├── WhatsappCloneInReactNative-tvOS │ └── Info.plist ├── WhatsappCloneInReactNative-tvOSTests │ └── Info.plist ├── WhatsappCloneInReactNative.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── WhatsappCloneInReactNative-tvOS.xcscheme │ │ └── WhatsappCloneInReactNative.xcscheme ├── WhatsappCloneInReactNative │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── WhatsappCloneInReactNativeTests │ ├── Info.plist │ └── WhatsappCloneInReactNativeTests.m ├── package.json └── source ├── App.js ├── Routes.js ├── actions ├── AppActions.js └── AuthActions.js ├── components ├── AddContactScreen.js ├── CallScane.js ├── Camera.js ├── Chat.js ├── ChatScene.js ├── ChatsList.js ├── ConctactsList.js ├── LoginScreen.js ├── MainScreen.js ├── SelectContact.js ├── SignUpScreen.js ├── StatusScane.js ├── TabBarMenu.js └── WelcomeScreen.js ├── images ├── ic_button_send_sms.png ├── ic_chats_contacts.png ├── ic_log_in_background.png ├── ic_magnifying_glass.png ├── ic_menu_application.png └── ic_photo_camera.png ├── reducers ├── AppReducer.js ├── AuthReducer.js ├── ListChatsReducer.js ├── ListContactsReducer.js ├── ListConversation.js └── index.js └── resources ├── FirebaseSettings.js.example ├── constants.js ├── strings.js └── types.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "rallycoding" 3 | } 4 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/__tests__/App.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/index.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/app/src/main/assets/index.android.bundle -------------------------------------------------------------------------------- /android/app/src/main/assets/index.android.bundle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/app/src/main/assets/index.android.bundle.meta -------------------------------------------------------------------------------- /android/app/src/main/java/com/whatsappcloneinreactnative/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/app/src/main/java/com/whatsappcloneinreactnative/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/whatsappcloneinreactnative/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/app/src/main/java/com/whatsappcloneinreactnative/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/node_modules_reactnavigation_src_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/app/src/main/res/drawable-hdpi/node_modules_reactnavigation_src_views_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnativerouterflux_images_back_chevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/app/src/main/res/drawable-mdpi/node_modules_reactnativerouterflux_images_back_chevron.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnativerouterflux_images_menu_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/app/src/main/res/drawable-mdpi/node_modules_reactnativerouterflux_images_menu_burger.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnavigation_src_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/app/src/main/res/drawable-mdpi/node_modules_reactnavigation_src_views_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/source_images_ic_add_contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/app/src/main/res/drawable-mdpi/source_images_ic_add_contact.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/source_images_ic_button_send_sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/app/src/main/res/drawable-mdpi/source_images_ic_button_send_sms.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/source_images_ic_chats_contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/app/src/main/res/drawable-mdpi/source_images_ic_chats_contacts.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/source_images_ic_photo_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/app/src/main/res/drawable-mdpi/source_images_ic_photo_camera.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/node_modules_reactnavigation_src_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/app/src/main/res/drawable-xhdpi/node_modules_reactnavigation_src_views_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/node_modules_reactnavigation_src_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnavigation_src_views_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/node_modules_reactnavigation_src_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/app/src/main/res/drawable-xxxhdpi/node_modules_reactnavigation_src_views_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'WhatsappCloneInReactNative' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/app.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/index.js -------------------------------------------------------------------------------- /ios/WhatsappCloneInReactNative-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/ios/WhatsappCloneInReactNative-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/WhatsappCloneInReactNative-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/ios/WhatsappCloneInReactNative-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/WhatsappCloneInReactNative.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/ios/WhatsappCloneInReactNative.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/WhatsappCloneInReactNative.xcodeproj/xcshareddata/xcschemes/WhatsappCloneInReactNative-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/ios/WhatsappCloneInReactNative.xcodeproj/xcshareddata/xcschemes/WhatsappCloneInReactNative-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/WhatsappCloneInReactNative.xcodeproj/xcshareddata/xcschemes/WhatsappCloneInReactNative.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/ios/WhatsappCloneInReactNative.xcodeproj/xcshareddata/xcschemes/WhatsappCloneInReactNative.xcscheme -------------------------------------------------------------------------------- /ios/WhatsappCloneInReactNative/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/ios/WhatsappCloneInReactNative/AppDelegate.h -------------------------------------------------------------------------------- /ios/WhatsappCloneInReactNative/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/ios/WhatsappCloneInReactNative/AppDelegate.m -------------------------------------------------------------------------------- /ios/WhatsappCloneInReactNative/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/ios/WhatsappCloneInReactNative/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/WhatsappCloneInReactNative/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/ios/WhatsappCloneInReactNative/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/WhatsappCloneInReactNative/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/ios/WhatsappCloneInReactNative/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/WhatsappCloneInReactNative/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/ios/WhatsappCloneInReactNative/Info.plist -------------------------------------------------------------------------------- /ios/WhatsappCloneInReactNative/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/ios/WhatsappCloneInReactNative/main.m -------------------------------------------------------------------------------- /ios/WhatsappCloneInReactNativeTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/ios/WhatsappCloneInReactNativeTests/Info.plist -------------------------------------------------------------------------------- /ios/WhatsappCloneInReactNativeTests/WhatsappCloneInReactNativeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/ios/WhatsappCloneInReactNativeTests/WhatsappCloneInReactNativeTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/package.json -------------------------------------------------------------------------------- /source/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/App.js -------------------------------------------------------------------------------- /source/Routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/Routes.js -------------------------------------------------------------------------------- /source/actions/AppActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/actions/AppActions.js -------------------------------------------------------------------------------- /source/actions/AuthActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/actions/AuthActions.js -------------------------------------------------------------------------------- /source/components/AddContactScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/components/AddContactScreen.js -------------------------------------------------------------------------------- /source/components/CallScane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/components/CallScane.js -------------------------------------------------------------------------------- /source/components/Camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/components/Camera.js -------------------------------------------------------------------------------- /source/components/Chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/components/Chat.js -------------------------------------------------------------------------------- /source/components/ChatScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/components/ChatScene.js -------------------------------------------------------------------------------- /source/components/ChatsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/components/ChatsList.js -------------------------------------------------------------------------------- /source/components/ConctactsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/components/ConctactsList.js -------------------------------------------------------------------------------- /source/components/LoginScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/components/LoginScreen.js -------------------------------------------------------------------------------- /source/components/MainScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/components/MainScreen.js -------------------------------------------------------------------------------- /source/components/SelectContact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/components/SelectContact.js -------------------------------------------------------------------------------- /source/components/SignUpScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/components/SignUpScreen.js -------------------------------------------------------------------------------- /source/components/StatusScane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/components/StatusScane.js -------------------------------------------------------------------------------- /source/components/TabBarMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/components/TabBarMenu.js -------------------------------------------------------------------------------- /source/components/WelcomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/components/WelcomeScreen.js -------------------------------------------------------------------------------- /source/images/ic_button_send_sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/images/ic_button_send_sms.png -------------------------------------------------------------------------------- /source/images/ic_chats_contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/images/ic_chats_contacts.png -------------------------------------------------------------------------------- /source/images/ic_log_in_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/images/ic_log_in_background.png -------------------------------------------------------------------------------- /source/images/ic_magnifying_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/images/ic_magnifying_glass.png -------------------------------------------------------------------------------- /source/images/ic_menu_application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/images/ic_menu_application.png -------------------------------------------------------------------------------- /source/images/ic_photo_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/images/ic_photo_camera.png -------------------------------------------------------------------------------- /source/reducers/AppReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/reducers/AppReducer.js -------------------------------------------------------------------------------- /source/reducers/AuthReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/reducers/AuthReducer.js -------------------------------------------------------------------------------- /source/reducers/ListChatsReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/reducers/ListChatsReducer.js -------------------------------------------------------------------------------- /source/reducers/ListContactsReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/reducers/ListContactsReducer.js -------------------------------------------------------------------------------- /source/reducers/ListConversation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/reducers/ListConversation.js -------------------------------------------------------------------------------- /source/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/reducers/index.js -------------------------------------------------------------------------------- /source/resources/FirebaseSettings.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/resources/FirebaseSettings.js.example -------------------------------------------------------------------------------- /source/resources/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/resources/constants.js -------------------------------------------------------------------------------- /source/resources/strings.js: -------------------------------------------------------------------------------- 1 | export const app_name = 'Whatsapp Clone'; 2 | -------------------------------------------------------------------------------- /source/resources/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filipenatanael/whatsapp-clone-react-native/HEAD/source/resources/types.js --------------------------------------------------------------------------------