├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .travis.yml ├── .watchmanconfig ├── App.js ├── CONTRIBUTING.md ├── LICENSE ├── SocialAssets └── readmeHeader.png ├── __tests__ └── App-test.js ├── android ├── .gradle │ ├── buildOutputCleanup │ │ ├── buildOutputCleanup.lock │ │ ├── cache.properties │ │ └── outputFiles.bin │ └── vcs-1 │ │ └── gc.properties ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── cosmos │ │ │ └── ReactNativeFlipper.java │ │ └── 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 │ │ │ ├── Roboto.ttf │ │ │ ├── Roboto_medium.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ ├── Zocial.ttf │ │ │ └── rubicon-icon-font.ttf │ │ ├── java │ │ └── com │ │ │ └── cosmos │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── layout │ │ └── launch_screen.xml │ │ ├── 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 │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── assets ├── box.png ├── boxes.png └── newBorn.png ├── babel.config.js ├── index.js ├── ios ├── Podfile ├── cosmos-tvOS │ └── Info.plist ├── cosmos-tvOSTests │ └── Info.plist ├── cosmos.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── cosmos-tvOS.xcscheme │ │ └── cosmos.xcscheme ├── cosmos │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m └── cosmosTests │ ├── Info.plist │ └── cosmosTests.m ├── metro.config.js ├── package.json ├── readme.md ├── sarthak.keystore.enc ├── src ├── Constants.js ├── Styles.js ├── components │ ├── ActiveImage │ │ └── index.js │ ├── AppHeader │ │ └── index.js │ ├── BottomSheet │ │ └── index.js │ ├── ErrorManager │ │ └── index.js │ ├── LeftContent │ │ └── index.js │ ├── LottieComponents │ │ ├── Animations │ │ │ ├── box.json │ │ │ ├── clock.json │ │ │ ├── groups.json │ │ │ ├── loading.json │ │ │ └── welcome.json │ │ └── BoxLoading │ │ │ └── index.js │ ├── Overlay │ │ └── index.js │ ├── Post │ │ ├── PostBox.js │ │ ├── PostOptions.js │ │ ├── Reactions.js │ │ └── index.js │ ├── ReactionIcon │ │ └── ReactionIcon.js │ └── Svg │ │ ├── AddPictureIcon │ │ └── index.js │ │ ├── CommentIcon │ │ └── index.js │ │ ├── HeartIcon │ │ └── index.js │ │ ├── HomeIcon │ │ └── index.js │ │ ├── MehFaceIcons │ │ └── index.js │ │ ├── ProfileIcon │ │ └── index.js │ │ └── SadFaceIcon │ │ └── index.js ├── contexts │ ├── UserContext.js │ └── createDataContext.js ├── screens │ ├── AddImageScreen │ │ ├── index.js │ │ └── styles.js │ ├── BoxScreen │ │ ├── index.js │ │ └── styles.js │ ├── CommentScreen │ │ ├── index.js │ │ └── styles.js │ ├── HomeScreen │ │ ├── index.js │ │ └── styles.js │ ├── LandingScreen │ │ ├── index.js │ │ └── styles.js │ ├── ListBoxesScreen │ │ ├── index.js │ │ └── styles.js │ ├── MainSettingsScreen │ │ ├── index.js │ │ └── styles.js │ ├── PostViewScreen │ │ ├── index.js │ │ └── styles.js │ └── ProfileScreen │ │ ├── index.js │ │ └── styles.js └── utils │ ├── Handlers │ └── PostHandlers.js │ ├── Notifications │ └── index.js │ ├── asyncStorageHelper.js │ └── firebase.js ├── upload.sh └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/.travis.yml -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/App.js -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/LICENSE -------------------------------------------------------------------------------- /SocialAssets/readmeHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/SocialAssets/readmeHeader.png -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /android/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Sat Jun 13 19:52:43 IST 2020 2 | gradle.version=6.3 3 | -------------------------------------------------------------------------------- /android/.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /android/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/.classpath -------------------------------------------------------------------------------- /android/app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/.project -------------------------------------------------------------------------------- /android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/cosmos/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/debug/java/com/cosmos/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Fontisto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/assets/fonts/Fontisto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/rubicon-icon-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/assets/fonts/rubicon-icon-font.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/cosmos/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/java/com/cosmos/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/cosmos/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/java/com/cosmos/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/layout/launch_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/res/layout/launch_screen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/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/sarthakpranesh/Cosmos/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/sarthakpranesh/Cosmos/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/sarthakpranesh/Cosmos/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/sarthakpranesh/Cosmos/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/sarthakpranesh/Cosmos/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/sarthakpranesh/Cosmos/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/sarthakpranesh/Cosmos/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/sarthakpranesh/Cosmos/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/sarthakpranesh/Cosmos/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/app.json -------------------------------------------------------------------------------- /assets/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/assets/box.png -------------------------------------------------------------------------------- /assets/boxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/assets/boxes.png -------------------------------------------------------------------------------- /assets/newBorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/assets/newBorn.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/cosmos-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/ios/cosmos-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/cosmos-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/ios/cosmos-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/cosmos.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/ios/cosmos.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/cosmos.xcodeproj/xcshareddata/xcschemes/cosmos-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/ios/cosmos.xcodeproj/xcshareddata/xcschemes/cosmos-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/cosmos.xcodeproj/xcshareddata/xcschemes/cosmos.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/ios/cosmos.xcodeproj/xcshareddata/xcschemes/cosmos.xcscheme -------------------------------------------------------------------------------- /ios/cosmos/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/ios/cosmos/AppDelegate.h -------------------------------------------------------------------------------- /ios/cosmos/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/ios/cosmos/AppDelegate.m -------------------------------------------------------------------------------- /ios/cosmos/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/ios/cosmos/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/cosmos/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/ios/cosmos/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/cosmos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/ios/cosmos/Info.plist -------------------------------------------------------------------------------- /ios/cosmos/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/ios/cosmos/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/cosmos/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/ios/cosmos/main.m -------------------------------------------------------------------------------- /ios/cosmosTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/ios/cosmosTests/Info.plist -------------------------------------------------------------------------------- /ios/cosmosTests/cosmosTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/ios/cosmosTests/cosmosTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/readme.md -------------------------------------------------------------------------------- /sarthak.keystore.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/sarthak.keystore.enc -------------------------------------------------------------------------------- /src/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/Constants.js -------------------------------------------------------------------------------- /src/Styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/Styles.js -------------------------------------------------------------------------------- /src/components/ActiveImage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/components/ActiveImage/index.js -------------------------------------------------------------------------------- /src/components/AppHeader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/components/AppHeader/index.js -------------------------------------------------------------------------------- /src/components/BottomSheet/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/components/BottomSheet/index.js -------------------------------------------------------------------------------- /src/components/ErrorManager/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/components/ErrorManager/index.js -------------------------------------------------------------------------------- /src/components/LeftContent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/components/LeftContent/index.js -------------------------------------------------------------------------------- /src/components/LottieComponents/Animations/box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/components/LottieComponents/Animations/box.json -------------------------------------------------------------------------------- /src/components/LottieComponents/Animations/clock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/components/LottieComponents/Animations/clock.json -------------------------------------------------------------------------------- /src/components/LottieComponents/Animations/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/components/LottieComponents/Animations/groups.json -------------------------------------------------------------------------------- /src/components/LottieComponents/Animations/loading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/components/LottieComponents/Animations/loading.json -------------------------------------------------------------------------------- /src/components/LottieComponents/Animations/welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/components/LottieComponents/Animations/welcome.json -------------------------------------------------------------------------------- /src/components/LottieComponents/BoxLoading/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/components/LottieComponents/BoxLoading/index.js -------------------------------------------------------------------------------- /src/components/Overlay/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/components/Overlay/index.js -------------------------------------------------------------------------------- /src/components/Post/PostBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/components/Post/PostBox.js -------------------------------------------------------------------------------- /src/components/Post/PostOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/components/Post/PostOptions.js -------------------------------------------------------------------------------- /src/components/Post/Reactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/components/Post/Reactions.js -------------------------------------------------------------------------------- /src/components/Post/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/components/Post/index.js -------------------------------------------------------------------------------- /src/components/ReactionIcon/ReactionIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/components/ReactionIcon/ReactionIcon.js -------------------------------------------------------------------------------- /src/components/Svg/AddPictureIcon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/components/Svg/AddPictureIcon/index.js -------------------------------------------------------------------------------- /src/components/Svg/CommentIcon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/components/Svg/CommentIcon/index.js -------------------------------------------------------------------------------- /src/components/Svg/HeartIcon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/components/Svg/HeartIcon/index.js -------------------------------------------------------------------------------- /src/components/Svg/HomeIcon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/components/Svg/HomeIcon/index.js -------------------------------------------------------------------------------- /src/components/Svg/MehFaceIcons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/components/Svg/MehFaceIcons/index.js -------------------------------------------------------------------------------- /src/components/Svg/ProfileIcon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/components/Svg/ProfileIcon/index.js -------------------------------------------------------------------------------- /src/components/Svg/SadFaceIcon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/components/Svg/SadFaceIcon/index.js -------------------------------------------------------------------------------- /src/contexts/UserContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/contexts/UserContext.js -------------------------------------------------------------------------------- /src/contexts/createDataContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/contexts/createDataContext.js -------------------------------------------------------------------------------- /src/screens/AddImageScreen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/screens/AddImageScreen/index.js -------------------------------------------------------------------------------- /src/screens/AddImageScreen/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/screens/AddImageScreen/styles.js -------------------------------------------------------------------------------- /src/screens/BoxScreen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/screens/BoxScreen/index.js -------------------------------------------------------------------------------- /src/screens/BoxScreen/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/screens/BoxScreen/styles.js -------------------------------------------------------------------------------- /src/screens/CommentScreen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/screens/CommentScreen/index.js -------------------------------------------------------------------------------- /src/screens/CommentScreen/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/screens/CommentScreen/styles.js -------------------------------------------------------------------------------- /src/screens/HomeScreen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/screens/HomeScreen/index.js -------------------------------------------------------------------------------- /src/screens/HomeScreen/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/screens/HomeScreen/styles.js -------------------------------------------------------------------------------- /src/screens/LandingScreen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/screens/LandingScreen/index.js -------------------------------------------------------------------------------- /src/screens/LandingScreen/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/screens/LandingScreen/styles.js -------------------------------------------------------------------------------- /src/screens/ListBoxesScreen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/screens/ListBoxesScreen/index.js -------------------------------------------------------------------------------- /src/screens/ListBoxesScreen/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/screens/ListBoxesScreen/styles.js -------------------------------------------------------------------------------- /src/screens/MainSettingsScreen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/screens/MainSettingsScreen/index.js -------------------------------------------------------------------------------- /src/screens/MainSettingsScreen/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/screens/MainSettingsScreen/styles.js -------------------------------------------------------------------------------- /src/screens/PostViewScreen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/screens/PostViewScreen/index.js -------------------------------------------------------------------------------- /src/screens/PostViewScreen/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/screens/PostViewScreen/styles.js -------------------------------------------------------------------------------- /src/screens/ProfileScreen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/screens/ProfileScreen/index.js -------------------------------------------------------------------------------- /src/screens/ProfileScreen/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/screens/ProfileScreen/styles.js -------------------------------------------------------------------------------- /src/utils/Handlers/PostHandlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/utils/Handlers/PostHandlers.js -------------------------------------------------------------------------------- /src/utils/Notifications/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/utils/Notifications/index.js -------------------------------------------------------------------------------- /src/utils/asyncStorageHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/utils/asyncStorageHelper.js -------------------------------------------------------------------------------- /src/utils/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/src/utils/firebase.js -------------------------------------------------------------------------------- /upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/upload.sh -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthakpranesh/Cosmos/HEAD/yarn.lock --------------------------------------------------------------------------------