├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── .vscode └── settings.json ├── .watchmanconfig ├── LICENSE.md ├── android ├── app │ ├── BUCK │ ├── TestKeyStore.jsk.enc │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── AntDesign.ttf │ │ │ ├── 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 │ │ ├── java │ │ └── com │ │ │ └── firebase_chat │ │ │ ├── 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 ├── firebase_chat-tvOS │ └── Info.plist ├── firebase_chat-tvOSTests │ └── Info.plist ├── firebase_chat.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── firebase_chat-tvOS.xcscheme │ │ └── firebase_chat.xcscheme ├── firebase_chat │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── firebase_chatTests │ ├── Info.plist │ └── firebase_chatTests.m ├── package.json ├── readme.md └── src ├── App.js ├── components ├── chatHeader.js ├── contact.js ├── conversation.js ├── header.js ├── headerIcon.js ├── message.js ├── msgbar.js └── progressiveImage.js ├── img ├── header-bg.png ├── profile.png └── register-bg.png ├── layout └── index.js ├── screens ├── chat.js ├── contacts.js ├── conversations.js ├── profile.js ├── register.js ├── splash.js └── verify.js ├── store ├── chat.js ├── contact.js ├── conversation.js ├── index.js └── user.js ├── theme ├── colors.js ├── component │ ├── conversation.js │ ├── message.js │ └── msgbar.js └── index.js └── utils ├── db.js ├── enableFontPatch.js └── utils.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/.babelrc -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/LICENSE.md -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/TestKeyStore.jsk.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/app/TestKeyStore.jsk.enc -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/firebase_chat/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/app/src/main/java/com/firebase_chat/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/firebase_chat/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/app/src/main/java/com/firebase_chat/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/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/bhavik66/react-native-firebase-chat/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/bhavik66/react-native-firebase-chat/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/bhavik66/react-native-firebase-chat/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/bhavik66/react-native-firebase-chat/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/bhavik66/react-native-firebase-chat/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/bhavik66/react-native-firebase-chat/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/bhavik66/react-native-firebase-chat/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/bhavik66/react-native-firebase-chat/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/bhavik66/react-native-firebase-chat/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/app.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/index.js -------------------------------------------------------------------------------- /ios/firebase_chat-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/ios/firebase_chat-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/firebase_chat-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/ios/firebase_chat-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/firebase_chat.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/ios/firebase_chat.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/firebase_chat.xcodeproj/xcshareddata/xcschemes/firebase_chat-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/ios/firebase_chat.xcodeproj/xcshareddata/xcschemes/firebase_chat-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/firebase_chat.xcodeproj/xcshareddata/xcschemes/firebase_chat.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/ios/firebase_chat.xcodeproj/xcshareddata/xcschemes/firebase_chat.xcscheme -------------------------------------------------------------------------------- /ios/firebase_chat/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/ios/firebase_chat/AppDelegate.h -------------------------------------------------------------------------------- /ios/firebase_chat/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/ios/firebase_chat/AppDelegate.m -------------------------------------------------------------------------------- /ios/firebase_chat/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/ios/firebase_chat/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/firebase_chat/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/ios/firebase_chat/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/firebase_chat/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/ios/firebase_chat/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/firebase_chat/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/ios/firebase_chat/Info.plist -------------------------------------------------------------------------------- /ios/firebase_chat/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/ios/firebase_chat/main.m -------------------------------------------------------------------------------- /ios/firebase_chatTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/ios/firebase_chatTests/Info.plist -------------------------------------------------------------------------------- /ios/firebase_chatTests/firebase_chatTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/ios/firebase_chatTests/firebase_chatTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/readme.md -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/chatHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/components/chatHeader.js -------------------------------------------------------------------------------- /src/components/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/components/contact.js -------------------------------------------------------------------------------- /src/components/conversation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/components/conversation.js -------------------------------------------------------------------------------- /src/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/components/header.js -------------------------------------------------------------------------------- /src/components/headerIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/components/headerIcon.js -------------------------------------------------------------------------------- /src/components/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/components/message.js -------------------------------------------------------------------------------- /src/components/msgbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/components/msgbar.js -------------------------------------------------------------------------------- /src/components/progressiveImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/components/progressiveImage.js -------------------------------------------------------------------------------- /src/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/img/header-bg.png -------------------------------------------------------------------------------- /src/img/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/img/profile.png -------------------------------------------------------------------------------- /src/img/register-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/img/register-bg.png -------------------------------------------------------------------------------- /src/layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/layout/index.js -------------------------------------------------------------------------------- /src/screens/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/screens/chat.js -------------------------------------------------------------------------------- /src/screens/contacts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/screens/contacts.js -------------------------------------------------------------------------------- /src/screens/conversations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/screens/conversations.js -------------------------------------------------------------------------------- /src/screens/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/screens/profile.js -------------------------------------------------------------------------------- /src/screens/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/screens/register.js -------------------------------------------------------------------------------- /src/screens/splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/screens/splash.js -------------------------------------------------------------------------------- /src/screens/verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/screens/verify.js -------------------------------------------------------------------------------- /src/store/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/store/chat.js -------------------------------------------------------------------------------- /src/store/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/store/contact.js -------------------------------------------------------------------------------- /src/store/conversation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/store/conversation.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/store/user.js -------------------------------------------------------------------------------- /src/theme/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/theme/colors.js -------------------------------------------------------------------------------- /src/theme/component/conversation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/theme/component/conversation.js -------------------------------------------------------------------------------- /src/theme/component/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/theme/component/message.js -------------------------------------------------------------------------------- /src/theme/component/msgbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/theme/component/msgbar.js -------------------------------------------------------------------------------- /src/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/theme/index.js -------------------------------------------------------------------------------- /src/utils/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/utils/db.js -------------------------------------------------------------------------------- /src/utils/enableFontPatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/utils/enableFontPatch.js -------------------------------------------------------------------------------- /src/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavik66/react-native-firebase-chat/HEAD/src/utils/utils.js --------------------------------------------------------------------------------