├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── ---bug-report.md │ ├── ---feature-request.md │ ├── ---questions---help.md │ └── config.yml ├── pull_request_template.md └── workflows │ └── build.yml ├── .gitignore ├── .prettierrc.js ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── docs ├── firebase-cloud-functions.md ├── firebase-installation.md ├── firebase-overview.md ├── firebase-rules.md └── firebase-usage.md ├── example ├── .buckconfig ├── .editorconfig ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── README.md ├── android │ ├── app │ │ ├── _BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ReactNativeFlipper.kt │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── firebase.json ├── index.js ├── ios │ ├── Podfile │ ├── Podfile.lock │ ├── example.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── example.xcscheme │ ├── example.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── example │ │ ├── AppDelegate.swift │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── example-Bridging-Header.h ├── metro.config.js ├── package.json ├── src │ ├── App.tsx │ ├── AppContainer.tsx │ ├── screens │ │ ├── ChatScreen │ │ │ ├── ChatScreen.tsx │ │ │ └── index.ts │ │ ├── LoginScreen │ │ │ ├── LoginScreen.tsx │ │ │ └── index.ts │ │ ├── RegisterScreen │ │ │ ├── RegisterScreen.tsx │ │ │ └── index.ts │ │ ├── RoomsScreen │ │ │ ├── RoomsScreen.tsx │ │ │ └── index.ts │ │ ├── UsersScreen │ │ │ ├── UsersScreen.tsx │ │ │ └── index.ts │ │ └── index.ts │ └── types.ts ├── tsconfig.json └── yarn.lock ├── package.json ├── src ├── index.ts ├── types.ts ├── useFirebaseUser.ts ├── useMessages.ts ├── useRoom.ts ├── useRooms.ts ├── useUsers.ts └── utils.ts ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | **/node_modules 2 | example/ 3 | lib/ 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/.github/ISSUE_TEMPLATE/---bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/.github/ISSUE_TEMPLATE/---feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---questions---help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/.github/ISSUE_TEMPLATE/---questions---help.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/firebase-cloud-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/docs/firebase-cloud-functions.md -------------------------------------------------------------------------------- /docs/firebase-installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/docs/firebase-installation.md -------------------------------------------------------------------------------- /docs/firebase-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/docs/firebase-overview.md -------------------------------------------------------------------------------- /docs/firebase-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/docs/firebase-rules.md -------------------------------------------------------------------------------- /docs/firebase-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/docs/firebase-usage.md -------------------------------------------------------------------------------- /example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/.buckconfig -------------------------------------------------------------------------------- /example/.editorconfig: -------------------------------------------------------------------------------- 1 | # Windows files 2 | [*.bat] 3 | end_of_line = crlf 4 | -------------------------------------------------------------------------------- /example/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/.eslintrc.js -------------------------------------------------------------------------------- /example/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/.gitattributes -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/.prettierrc.js -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/README.md -------------------------------------------------------------------------------- /example/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/app/_BUCK -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/app/build_defs.bzl -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/debug/java/com/example/ReactNativeFlipper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/app/src/debug/java/com/example/ReactNativeFlipper.kt -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/app/src/main/java/com/example/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/app/src/main/java/com/example/MainApplication.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/firebase.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/ios/example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/ios/example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/ios/example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme -------------------------------------------------------------------------------- /example/ios/example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/ios/example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/ios/example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/ios/example/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/ios/example/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/ios/example/Info.plist -------------------------------------------------------------------------------- /example/ios/example/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/ios/example/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/example/example-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/ios/example/example-Bridging-Header.h -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/src/AppContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/src/AppContainer.tsx -------------------------------------------------------------------------------- /example/src/screens/ChatScreen/ChatScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/src/screens/ChatScreen/ChatScreen.tsx -------------------------------------------------------------------------------- /example/src/screens/ChatScreen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/src/screens/ChatScreen/index.ts -------------------------------------------------------------------------------- /example/src/screens/LoginScreen/LoginScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/src/screens/LoginScreen/LoginScreen.tsx -------------------------------------------------------------------------------- /example/src/screens/LoginScreen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/src/screens/LoginScreen/index.ts -------------------------------------------------------------------------------- /example/src/screens/RegisterScreen/RegisterScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/src/screens/RegisterScreen/RegisterScreen.tsx -------------------------------------------------------------------------------- /example/src/screens/RegisterScreen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/src/screens/RegisterScreen/index.ts -------------------------------------------------------------------------------- /example/src/screens/RoomsScreen/RoomsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/src/screens/RoomsScreen/RoomsScreen.tsx -------------------------------------------------------------------------------- /example/src/screens/RoomsScreen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/src/screens/RoomsScreen/index.ts -------------------------------------------------------------------------------- /example/src/screens/UsersScreen/UsersScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/src/screens/UsersScreen/UsersScreen.tsx -------------------------------------------------------------------------------- /example/src/screens/UsersScreen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/src/screens/UsersScreen/index.ts -------------------------------------------------------------------------------- /example/src/screens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/src/screens/index.ts -------------------------------------------------------------------------------- /example/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/src/types.ts -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/useFirebaseUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/src/useFirebaseUser.ts -------------------------------------------------------------------------------- /src/useMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/src/useMessages.ts -------------------------------------------------------------------------------- /src/useRoom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/src/useRoom.ts -------------------------------------------------------------------------------- /src/useRooms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/src/useRooms.ts -------------------------------------------------------------------------------- /src/useUsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/src/useUsers.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyerhq/react-native-firebase-chat-core/HEAD/yarn.lock --------------------------------------------------------------------------------