├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── App.js ├── README.md ├── __tests__ └── App-test.js ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── AntDesign.ttf │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ ├── Fontisto.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── RobotoMono-Bold.ttf │ │ │ ├── RobotoMono-BoldItalic.ttf │ │ │ ├── RobotoMono-Italic.ttf │ │ │ ├── RobotoMono-Light.ttf │ │ │ ├── RobotoMono-LightItalic.ttf │ │ │ ├── RobotoMono-Medium.ttf │ │ │ ├── RobotoMono-MediumItalic.ttf │ │ │ ├── RobotoMono-Regular.ttf │ │ │ ├── RobotoMono-Thin.ttf │ │ │ ├── RobotoMono-ThinItalic.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── destruct_native │ │ │ ├── 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 │ │ ├── orig │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ └── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── assets ├── batman2.jpeg ├── flash.png ├── flash3.jpg ├── flash4.png ├── fonts │ ├── RobotoMono-Bold.ttf │ ├── RobotoMono-BoldItalic.ttf │ ├── RobotoMono-Italic.ttf │ ├── RobotoMono-Light.ttf │ ├── RobotoMono-LightItalic.ttf │ ├── RobotoMono-Medium.ttf │ ├── RobotoMono-MediumItalic.ttf │ ├── RobotoMono-Regular.ttf │ ├── RobotoMono-Thin.ttf │ └── RobotoMono-ThinItalic.ttf ├── justice4.png └── superman.jpg ├── babel.config.js ├── firebase.json ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── destruct_native-tvOS │ └── Info.plist ├── destruct_native-tvOSTests │ └── Info.plist ├── destruct_native.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── destruct_native-tvOS.xcscheme │ │ └── destruct_native.xcscheme ├── destruct_native.xcworkspace │ └── contents.xcworkspacedata ├── destruct_native │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── destruct_nativeTests │ ├── Info.plist │ └── destruct_nativeTests.m ├── metro.config.js ├── package.json ├── patches └── .gitkeep ├── react-native.config.js ├── src ├── Router.js ├── components │ ├── CustomDrawer.js │ ├── CustomTabBar.js │ ├── DrawerProfile.js │ ├── GiphyComponent.js │ ├── GroupList.js │ ├── Header.js │ ├── HeaderComponents.js │ ├── MessageBubble.js │ ├── MessageComponent.js │ ├── SelectMessage.js │ ├── TextInput.js │ ├── TimerModal.js │ └── UserList.js ├── config │ └── constants.js ├── helpers.js ├── redux │ ├── actions │ │ ├── authActions.js │ │ ├── channelActions.js │ │ └── types.js │ ├── reducers │ │ ├── authReducer.js │ │ ├── channelReducer.js │ │ ├── globalReducer.js │ │ ├── index.js │ │ └── profileReducer.js │ └── store │ │ └── index.js └── screens │ ├── AddChannel.js │ ├── Auth │ ├── AuthScreen.js │ ├── Login.js │ └── Register.js │ ├── AuthLoading.js │ ├── Chat │ └── ChatWindow.js │ ├── Home.js │ ├── Profile │ └── Profile.js │ └── Settings.js └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Fontisto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/Fontisto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/RobotoMono-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/RobotoMono-BoldItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/RobotoMono-Italic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/RobotoMono-Light.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoMono-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/RobotoMono-LightItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/RobotoMono-Medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoMono-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/RobotoMono-MediumItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoMono-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/RobotoMono-Thin.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoMono-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/RobotoMono-ThinItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/destruct_native/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/java/com/destruct_native/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/destruct_native/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/java/com/destruct_native/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/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/rohitpotato/react-native-chat-app/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/rohitpotato/react-native-chat-app/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/rohitpotato/react-native-chat-app/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/rohitpotato/react-native-chat-app/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/rohitpotato/react-native-chat-app/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/rohitpotato/react-native-chat-app/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/rohitpotato/react-native-chat-app/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/rohitpotato/react-native-chat-app/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/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/orig/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/res/orig/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/orig/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/res/orig/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/orig/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/res/orig/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/orig/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/res/orig/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/orig/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/res/orig/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/orig/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/res/orig/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/orig/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/res/orig/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/orig/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/res/orig/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/orig/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/res/orig/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/orig/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/res/orig/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/app.json -------------------------------------------------------------------------------- /assets/batman2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/assets/batman2.jpeg -------------------------------------------------------------------------------- /assets/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/assets/flash.png -------------------------------------------------------------------------------- /assets/flash3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/assets/flash3.jpg -------------------------------------------------------------------------------- /assets/flash4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/assets/flash4.png -------------------------------------------------------------------------------- /assets/fonts/RobotoMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/assets/fonts/RobotoMono-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/assets/fonts/RobotoMono-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/assets/fonts/RobotoMono-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/assets/fonts/RobotoMono-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoMono-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/assets/fonts/RobotoMono-LightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/assets/fonts/RobotoMono-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoMono-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/assets/fonts/RobotoMono-MediumItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/assets/fonts/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoMono-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/assets/fonts/RobotoMono-Thin.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoMono-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/assets/fonts/RobotoMono-ThinItalic.ttf -------------------------------------------------------------------------------- /assets/justice4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/assets/justice4.png -------------------------------------------------------------------------------- /assets/superman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/assets/superman.jpg -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/babel.config.js -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- 1 | { 2 | "react-native": {} 3 | } 4 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/destruct_native-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/ios/destruct_native-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/destruct_native-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/ios/destruct_native-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/destruct_native.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/ios/destruct_native.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/destruct_native.xcodeproj/xcshareddata/xcschemes/destruct_native-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/ios/destruct_native.xcodeproj/xcshareddata/xcschemes/destruct_native-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/destruct_native.xcodeproj/xcshareddata/xcschemes/destruct_native.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/ios/destruct_native.xcodeproj/xcshareddata/xcschemes/destruct_native.xcscheme -------------------------------------------------------------------------------- /ios/destruct_native.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/ios/destruct_native.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/destruct_native/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/ios/destruct_native/AppDelegate.h -------------------------------------------------------------------------------- /ios/destruct_native/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/ios/destruct_native/AppDelegate.m -------------------------------------------------------------------------------- /ios/destruct_native/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/ios/destruct_native/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/destruct_native/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/ios/destruct_native/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/destruct_native/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/ios/destruct_native/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/destruct_native/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/ios/destruct_native/Info.plist -------------------------------------------------------------------------------- /ios/destruct_native/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/ios/destruct_native/main.m -------------------------------------------------------------------------------- /ios/destruct_nativeTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/ios/destruct_nativeTests/Info.plist -------------------------------------------------------------------------------- /ios/destruct_nativeTests/destruct_nativeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/ios/destruct_nativeTests/destruct_nativeTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/package.json -------------------------------------------------------------------------------- /patches/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/react-native.config.js -------------------------------------------------------------------------------- /src/Router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/Router.js -------------------------------------------------------------------------------- /src/components/CustomDrawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/components/CustomDrawer.js -------------------------------------------------------------------------------- /src/components/CustomTabBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/components/CustomTabBar.js -------------------------------------------------------------------------------- /src/components/DrawerProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/components/DrawerProfile.js -------------------------------------------------------------------------------- /src/components/GiphyComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/components/GiphyComponent.js -------------------------------------------------------------------------------- /src/components/GroupList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/components/GroupList.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/components/HeaderComponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/components/HeaderComponents.js -------------------------------------------------------------------------------- /src/components/MessageBubble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/components/MessageBubble.js -------------------------------------------------------------------------------- /src/components/MessageComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/components/MessageComponent.js -------------------------------------------------------------------------------- /src/components/SelectMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/components/SelectMessage.js -------------------------------------------------------------------------------- /src/components/TextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/components/TextInput.js -------------------------------------------------------------------------------- /src/components/TimerModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/components/TimerModal.js -------------------------------------------------------------------------------- /src/components/UserList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/components/UserList.js -------------------------------------------------------------------------------- /src/config/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/config/constants.js -------------------------------------------------------------------------------- /src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/helpers.js -------------------------------------------------------------------------------- /src/redux/actions/authActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/redux/actions/authActions.js -------------------------------------------------------------------------------- /src/redux/actions/channelActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/redux/actions/channelActions.js -------------------------------------------------------------------------------- /src/redux/actions/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/redux/actions/types.js -------------------------------------------------------------------------------- /src/redux/reducers/authReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/redux/reducers/authReducer.js -------------------------------------------------------------------------------- /src/redux/reducers/channelReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/redux/reducers/channelReducer.js -------------------------------------------------------------------------------- /src/redux/reducers/globalReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/redux/reducers/globalReducer.js -------------------------------------------------------------------------------- /src/redux/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/redux/reducers/index.js -------------------------------------------------------------------------------- /src/redux/reducers/profileReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/redux/reducers/profileReducer.js -------------------------------------------------------------------------------- /src/redux/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/redux/store/index.js -------------------------------------------------------------------------------- /src/screens/AddChannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/screens/AddChannel.js -------------------------------------------------------------------------------- /src/screens/Auth/AuthScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/screens/Auth/AuthScreen.js -------------------------------------------------------------------------------- /src/screens/Auth/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/screens/Auth/Login.js -------------------------------------------------------------------------------- /src/screens/Auth/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/screens/Auth/Register.js -------------------------------------------------------------------------------- /src/screens/AuthLoading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/screens/AuthLoading.js -------------------------------------------------------------------------------- /src/screens/Chat/ChatWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/screens/Chat/ChatWindow.js -------------------------------------------------------------------------------- /src/screens/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/screens/Home.js -------------------------------------------------------------------------------- /src/screens/Profile/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/screens/Profile/Profile.js -------------------------------------------------------------------------------- /src/screens/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/src/screens/Settings.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitpotato/react-native-chat-app/HEAD/yarn.lock --------------------------------------------------------------------------------