├── .env ├── .gitignore ├── .vscode └── settings.json ├── App.tsx ├── LICENSE ├── Readme.md ├── android.bak ├── .gitignore ├── app │ ├── build.gradle │ ├── debug.keystore │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── me │ │ │ └── isaacojo │ │ │ └── qui │ │ │ ├── MainActivity.kt │ │ │ └── MainApplication.kt │ │ └── res │ │ ├── drawable-hdpi │ │ ├── notification_icon.png │ │ └── splashscreen_image.png │ │ ├── drawable-mdpi │ │ ├── notification_icon.png │ │ └── splashscreen_image.png │ │ ├── drawable-xhdpi │ │ ├── notification_icon.png │ │ └── splashscreen_image.png │ │ ├── drawable-xxhdpi │ │ ├── notification_icon.png │ │ └── splashscreen_image.png │ │ ├── drawable-xxxhdpi │ │ ├── notification_icon.png │ │ └── splashscreen_image.png │ │ ├── drawable │ │ ├── rn_edit_text_material.xml │ │ └── splashscreen.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── values-night │ │ └── colors.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── react-settings-plugin │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── expo │ │ └── plugins │ │ └── ReactSettingsPlugin.kt └── settings.gradle ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── debug.keystore │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── me │ │ │ └── isaacojo │ │ │ └── qui │ │ │ ├── MainActivity.kt │ │ │ └── MainApplication.kt │ │ └── res │ │ ├── drawable-hdpi │ │ ├── notification_icon.png │ │ └── splashscreen_image.png │ │ ├── drawable-mdpi │ │ ├── notification_icon.png │ │ └── splashscreen_image.png │ │ ├── drawable-xhdpi │ │ ├── notification_icon.png │ │ └── splashscreen_image.png │ │ ├── drawable-xxhdpi │ │ ├── notification_icon.png │ │ └── splashscreen_image.png │ │ ├── drawable-xxxhdpi │ │ ├── notification_icon.png │ │ └── splashscreen_image.png │ │ ├── drawable │ │ ├── rn_edit_text_material.xml │ │ └── splashscreen.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── values-night │ │ └── colors.xml │ │ └── 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 ├── Theme │ └── index.ts ├── adaptive-icon.png ├── avatar │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ └── placeholder.png ├── favicon.png ├── fonts │ ├── Instagram.ttf │ ├── Mulish-Black.ttf │ ├── Mulish-Bold.ttf │ ├── Mulish-ExtraBold.ttf │ ├── Mulish-Light.ttf │ ├── Mulish-Medium.ttf │ ├── Mulish.ttf │ ├── Panton.ttf │ ├── PlusJakartaSans-ExtraBold.ttf │ ├── PlusJakartaSans-Medium.ttf │ ├── PlusJakartaSans-SemiBold.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-Medium.ttf │ ├── UberMove-Bold.ttf │ ├── inst-bold.otf │ └── inst-regular.otf ├── icon.png ├── images │ ├── auth.png │ ├── bg.webp │ ├── emptyNot.png │ ├── emptySearch.png │ ├── image1.jpg │ ├── move.png │ ├── notification.png │ ├── phone.png │ ├── place-dark.svg │ ├── placeholder.jpg │ ├── placeholder.png │ ├── profile-black.svg │ ├── profile-white.svg │ ├── q.png │ ├── seek.png │ ├── shoot.png │ ├── tv-static.gif │ └── welcome.png ├── lottie │ ├── emptyList.json │ ├── isTyping-black.json │ ├── isTyping-light.json │ ├── like.json │ ├── notification.json │ ├── play.json │ └── robot.json ├── notification.png ├── qc.png ├── splash copy.png ├── splash-lightmode.png └── splash.png ├── babel.config.js ├── bun.lockb ├── components ├── chat │ ├── ChatBox.tsx │ ├── ChatBuilderText.tsx │ ├── ModalChatText.tsx │ ├── PickImageButton.tsx │ └── TypingBox.tsx ├── discover │ ├── HeaderTag │ │ └── index.tsx │ ├── PeopleContainer │ │ └── index.tsx │ ├── PostsContainer │ │ └── index.tsx │ ├── SearchBar │ │ └── index.tsx │ └── Skeleton │ │ ├── PostSearchSkeleton.tsx │ │ └── SearchSkeleton.tsx ├── editProfile │ └── EditContent.tsx ├── followingFollowers │ └── FollowingFollowerContainer.tsx ├── global │ ├── AnimatedScreen │ │ ├── FadeInView.tsx │ │ └── index.tsx │ ├── BottomSheetContainer │ │ ├── components │ │ │ ├── CheckBoxPair.tsx │ │ │ ├── CustomBg.tsx │ │ │ └── DarkModeView.tsx │ │ └── index.tsx │ ├── Buttons │ │ ├── AddPostButton.tsx │ │ ├── BottomBarButtons.tsx │ │ ├── Button.tsx │ │ └── IconButton.tsx │ ├── Modal │ │ └── LoadingOverlay.tsx │ └── Toast │ │ └── index.tsx ├── home │ ├── drawer │ │ ├── CustomDrawer.tsx │ │ └── HeaderDrawer.tsx │ ├── header │ │ ├── CustomDrawerHeader.tsx │ │ └── ProfileButton.tsx │ ├── misc │ │ ├── EmptyList.tsx │ │ ├── Skeleton.tsx │ │ └── SkeletonGroupPost.tsx │ └── post │ │ ├── FullScreenPost.tsx │ │ ├── PostBuilder.tsx │ │ ├── comment │ │ ├── CommentBuilder.tsx │ │ └── PostButton.tsx │ │ ├── components │ │ ├── AudioPlayLottie.tsx │ │ ├── AudioPost.tsx │ │ ├── CommentButton.tsx │ │ ├── EmptyLottie.tsx │ │ ├── Engagements.tsx │ │ ├── EngagementsFullScreen.tsx │ │ ├── Fab.tsx │ │ ├── LikeButton.tsx │ │ ├── LinkPost.tsx │ │ ├── LoadingIndicator.tsx │ │ ├── NameAndTag.tsx │ │ ├── NameAndTagFullScreen.tsx │ │ ├── PhotoPost.tsx │ │ ├── PhotoPostFullScreen.tsx │ │ ├── ProfileImage.tsx │ │ ├── RepostButton.tsx │ │ ├── RingAudio.tsx │ │ ├── TextPost.tsx │ │ ├── VideoPost.tsx │ │ └── VideoPostForFullScreen.tsx │ │ ├── misc │ │ ├── EngagementText.tsx │ │ └── Robot.tsx │ │ └── testVideo.tsx ├── icons │ └── index.tsx ├── messages │ ├── ChatList │ │ ├── ChatListView.tsx │ │ ├── ChatModal.tsx │ │ ├── Fab.tsx │ │ ├── ListContainer.tsx │ │ └── index.tsx │ └── Recent │ │ ├── AvatarName.tsx │ │ ├── Me.tsx │ │ └── index.tsx ├── notifications │ ├── NotifLottie.tsx │ └── NotificationBuilder │ │ └── index.tsx ├── postContent │ ├── PickAudioButton.tsx │ ├── PickImageButton.tsx │ ├── PickVideoButton.tsx │ ├── PostButton.tsx │ ├── TextArea.tsx │ └── VideoTextArea.tsx ├── profile │ ├── Bio.tsx │ ├── EditProfile.tsx │ ├── Header.tsx │ ├── UploadGif.tsx │ ├── UploadPhotoModal.tsx │ └── UploadPic.tsx ├── profilePeople │ ├── Bio.tsx │ ├── FollowerUser.tsx │ ├── Header.tsx │ └── ViewProfilePhoto.tsx └── searchUser │ ├── SearchBox.tsx │ └── UserContainer.tsx ├── credentials.json ├── data ├── chatDummyData.ts ├── dummyChat.ts ├── murphy.ts └── test.ts ├── eas.json ├── google-services.json ├── hooks ├── Debounce.tsx ├── GetMode.tsx └── Socket.tsx ├── ios ├── .gitignore ├── .xcode.env ├── Podfile ├── Podfile.lock ├── Podfile.properties.json ├── Qui.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── Qui.xcscheme ├── Qui.xcworkspace │ └── contents.xcworkspacedata └── Qui │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── App-Icon-1024x1024@1x.png │ │ └── Contents.json │ ├── Contents.json │ ├── SplashScreen.imageset │ │ ├── Contents.json │ │ └── image.png │ └── SplashScreenBackground.imageset │ │ ├── Contents.json │ │ └── image.png │ ├── Info.plist │ ├── PrivacyInfo.xcprivacy │ ├── Qui-Bridging-Header.h │ ├── Qui.entitlements │ ├── SplashScreen.storyboard │ ├── Supporting │ └── Expo.plist │ ├── main.m │ └── noop-file.swift ├── models.json ├── package.json ├── redux ├── api │ ├── auth.ts │ ├── chat.ts │ ├── services.ts │ └── user.ts ├── hooks │ └── hooks.ts ├── slice │ ├── bottomSheet │ │ └── index.tsx │ ├── chat │ │ ├── chatlist.ts │ │ └── online.ts │ ├── currentPage │ │ └── index.ts │ ├── modal │ │ └── loading.ts │ ├── people │ │ └── search.ts │ ├── post │ │ ├── audio.ts │ │ ├── followed.ts │ │ ├── index.ts │ │ └── search.ts │ ├── prefs │ │ └── index.ts │ ├── routes │ │ └── index.ts │ ├── toast │ │ └── toast.ts │ └── user │ │ ├── followers.ts │ │ └── index.ts ├── storage.ts └── store.ts ├── routes ├── Auth.tsx ├── Main.tsx ├── Main │ ├── BottomNavigation.tsx │ └── DrawerNavigation.tsx └── OnBoard.tsx ├── screen ├── App │ ├── ChangeData.tsx │ ├── ChangeData │ │ ├── ChangeName.tsx │ │ ├── ChangePassword.tsx │ │ ├── ChangeUserName.tsx │ │ └── DeleteAccountModal.tsx │ ├── ChatScreen.tsx │ ├── Discover.tsx │ ├── DiscoverScreens │ │ ├── Posts.tsx │ │ └── Users.tsx │ ├── EditProfile.tsx │ ├── FollowingFollowerScreens │ │ ├── Followers.tsx │ │ └── Following.tsx │ ├── FollowingFollowers.tsx │ ├── Home.tsx │ ├── HomeScreens │ │ ├── HomeAll.tsx │ │ └── HomeFollowed.tsx │ ├── ImageFullScreen.tsx │ ├── Messages.tsx │ ├── Notifications.tsx │ ├── Post.tsx │ ├── PostContent.tsx │ ├── PostScreen.tsx │ ├── Profile.tsx │ ├── ProfilePeople.tsx │ ├── ProfileScreens │ │ ├── MyPosts.tsx │ │ └── PeoplePosts.tsx │ ├── SearchUsers.tsx │ └── VideoFullScreen.tsx ├── Auth │ ├── Login.tsx │ ├── Register.tsx │ └── components │ │ ├── InputPassword.tsx │ │ └── InputText.tsx └── Onboard │ ├── components │ ├── OnboardBuilder.tsx │ └── TrackerTag.tsx │ └── index.tsx ├── screenshot └── qui.gif ├── tsconfig.json ├── types ├── api.ts ├── app.ts ├── navigation.ts └── socket.ts └── util ├── chatSearch.ts ├── convert.ts ├── date.ts ├── emoji.ts ├── notification.ts └── socket.ts /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cSpell.words": ["reposting"] 3 | } 4 | -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/App.tsx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/Readme.md -------------------------------------------------------------------------------- /android.bak/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/.gitignore -------------------------------------------------------------------------------- /android.bak/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/build.gradle -------------------------------------------------------------------------------- /android.bak/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/debug.keystore -------------------------------------------------------------------------------- /android.bak/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/google-services.json -------------------------------------------------------------------------------- /android.bak/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/proguard-rules.pro -------------------------------------------------------------------------------- /android.bak/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android.bak/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android.bak/app/src/main/java/me/isaacojo/qui/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/java/me/isaacojo/qui/MainActivity.kt -------------------------------------------------------------------------------- /android.bak/app/src/main/java/me/isaacojo/qui/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/java/me/isaacojo/qui/MainApplication.kt -------------------------------------------------------------------------------- /android.bak/app/src/main/res/drawable-hdpi/notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/drawable-hdpi/notification_icon.png -------------------------------------------------------------------------------- /android.bak/app/src/main/res/drawable-hdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/drawable-hdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android.bak/app/src/main/res/drawable-mdpi/notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/drawable-mdpi/notification_icon.png -------------------------------------------------------------------------------- /android.bak/app/src/main/res/drawable-mdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/drawable-mdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android.bak/app/src/main/res/drawable-xhdpi/notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/drawable-xhdpi/notification_icon.png -------------------------------------------------------------------------------- /android.bak/app/src/main/res/drawable-xhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/drawable-xhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android.bak/app/src/main/res/drawable-xxhdpi/notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/drawable-xxhdpi/notification_icon.png -------------------------------------------------------------------------------- /android.bak/app/src/main/res/drawable-xxhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/drawable-xxhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android.bak/app/src/main/res/drawable-xxxhdpi/notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/drawable-xxxhdpi/notification_icon.png -------------------------------------------------------------------------------- /android.bak/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android.bak/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android.bak/app/src/main/res/drawable/splashscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/drawable/splashscreen.xml -------------------------------------------------------------------------------- /android.bak/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android.bak/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android.bak/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android.bak/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android.bak/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android.bak/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android.bak/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android.bak/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android.bak/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android.bak/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android.bak/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android.bak/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android.bak/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android.bak/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android.bak/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android.bak/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android.bak/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android.bak/app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android.bak/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android.bak/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android.bak/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android.bak/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/build.gradle -------------------------------------------------------------------------------- /android.bak/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/gradle.properties -------------------------------------------------------------------------------- /android.bak/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android.bak/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android.bak/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/gradlew -------------------------------------------------------------------------------- /android.bak/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/gradlew.bat -------------------------------------------------------------------------------- /android.bak/react-settings-plugin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/react-settings-plugin/build.gradle.kts -------------------------------------------------------------------------------- /android.bak/react-settings-plugin/src/main/kotlin/expo/plugins/ReactSettingsPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/react-settings-plugin/src/main/kotlin/expo/plugins/ReactSettingsPlugin.kt -------------------------------------------------------------------------------- /android.bak/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android.bak/settings.gradle -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/me/isaacojo/qui/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/java/me/isaacojo/qui/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/java/me/isaacojo/qui/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/java/me/isaacojo/qui/MainApplication.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/drawable-hdpi/notification_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/drawable-hdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/drawable-mdpi/notification_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/drawable-mdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/drawable-xhdpi/notification_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/drawable-xhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/drawable-xxhdpi/notification_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/drawable-xxhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/drawable-xxxhdpi/notification_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/splashscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/drawable/splashscreen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/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/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/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/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/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/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/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/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/app.json -------------------------------------------------------------------------------- /assets/Theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/Theme/index.ts -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/avatar/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/avatar/1.jpg -------------------------------------------------------------------------------- /assets/avatar/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/avatar/2.jpg -------------------------------------------------------------------------------- /assets/avatar/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/avatar/3.jpg -------------------------------------------------------------------------------- /assets/avatar/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/avatar/placeholder.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/fonts/Instagram.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/fonts/Instagram.ttf -------------------------------------------------------------------------------- /assets/fonts/Mulish-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/fonts/Mulish-Black.ttf -------------------------------------------------------------------------------- /assets/fonts/Mulish-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/fonts/Mulish-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Mulish-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/fonts/Mulish-ExtraBold.ttf -------------------------------------------------------------------------------- /assets/fonts/Mulish-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/fonts/Mulish-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/Mulish-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/fonts/Mulish-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/Mulish.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/fonts/Mulish.ttf -------------------------------------------------------------------------------- /assets/fonts/Panton.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/fonts/Panton.ttf -------------------------------------------------------------------------------- /assets/fonts/PlusJakartaSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/fonts/PlusJakartaSans-ExtraBold.ttf -------------------------------------------------------------------------------- /assets/fonts/PlusJakartaSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/fonts/PlusJakartaSans-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/PlusJakartaSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/fonts/PlusJakartaSans-SemiBold.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/UberMove-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/fonts/UberMove-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/inst-bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/fonts/inst-bold.otf -------------------------------------------------------------------------------- /assets/fonts/inst-regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/fonts/inst-regular.otf -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/images/auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/images/auth.png -------------------------------------------------------------------------------- /assets/images/bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/images/bg.webp -------------------------------------------------------------------------------- /assets/images/emptyNot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/images/emptyNot.png -------------------------------------------------------------------------------- /assets/images/emptySearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/images/emptySearch.png -------------------------------------------------------------------------------- /assets/images/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/images/image1.jpg -------------------------------------------------------------------------------- /assets/images/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/images/move.png -------------------------------------------------------------------------------- /assets/images/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/images/notification.png -------------------------------------------------------------------------------- /assets/images/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/images/phone.png -------------------------------------------------------------------------------- /assets/images/place-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/images/place-dark.svg -------------------------------------------------------------------------------- /assets/images/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/images/placeholder.jpg -------------------------------------------------------------------------------- /assets/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/images/placeholder.png -------------------------------------------------------------------------------- /assets/images/profile-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/images/profile-black.svg -------------------------------------------------------------------------------- /assets/images/profile-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/images/profile-white.svg -------------------------------------------------------------------------------- /assets/images/q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/images/q.png -------------------------------------------------------------------------------- /assets/images/seek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/images/seek.png -------------------------------------------------------------------------------- /assets/images/shoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/images/shoot.png -------------------------------------------------------------------------------- /assets/images/tv-static.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/images/tv-static.gif -------------------------------------------------------------------------------- /assets/images/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/images/welcome.png -------------------------------------------------------------------------------- /assets/lottie/emptyList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/lottie/emptyList.json -------------------------------------------------------------------------------- /assets/lottie/isTyping-black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/lottie/isTyping-black.json -------------------------------------------------------------------------------- /assets/lottie/isTyping-light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/lottie/isTyping-light.json -------------------------------------------------------------------------------- /assets/lottie/like.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/lottie/like.json -------------------------------------------------------------------------------- /assets/lottie/notification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/lottie/notification.json -------------------------------------------------------------------------------- /assets/lottie/play.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/lottie/play.json -------------------------------------------------------------------------------- /assets/lottie/robot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/lottie/robot.json -------------------------------------------------------------------------------- /assets/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/notification.png -------------------------------------------------------------------------------- /assets/qc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/qc.png -------------------------------------------------------------------------------- /assets/splash copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/splash copy.png -------------------------------------------------------------------------------- /assets/splash-lightmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/splash-lightmode.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/babel.config.js -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/bun.lockb -------------------------------------------------------------------------------- /components/chat/ChatBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/chat/ChatBox.tsx -------------------------------------------------------------------------------- /components/chat/ChatBuilderText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/chat/ChatBuilderText.tsx -------------------------------------------------------------------------------- /components/chat/ModalChatText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/chat/ModalChatText.tsx -------------------------------------------------------------------------------- /components/chat/PickImageButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/chat/PickImageButton.tsx -------------------------------------------------------------------------------- /components/chat/TypingBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/chat/TypingBox.tsx -------------------------------------------------------------------------------- /components/discover/HeaderTag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/discover/HeaderTag/index.tsx -------------------------------------------------------------------------------- /components/discover/PeopleContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/discover/PeopleContainer/index.tsx -------------------------------------------------------------------------------- /components/discover/PostsContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/discover/PostsContainer/index.tsx -------------------------------------------------------------------------------- /components/discover/SearchBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/discover/SearchBar/index.tsx -------------------------------------------------------------------------------- /components/discover/Skeleton/PostSearchSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/discover/Skeleton/PostSearchSkeleton.tsx -------------------------------------------------------------------------------- /components/discover/Skeleton/SearchSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/discover/Skeleton/SearchSkeleton.tsx -------------------------------------------------------------------------------- /components/editProfile/EditContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/editProfile/EditContent.tsx -------------------------------------------------------------------------------- /components/followingFollowers/FollowingFollowerContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/followingFollowers/FollowingFollowerContainer.tsx -------------------------------------------------------------------------------- /components/global/AnimatedScreen/FadeInView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/global/AnimatedScreen/FadeInView.tsx -------------------------------------------------------------------------------- /components/global/AnimatedScreen/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/global/AnimatedScreen/index.tsx -------------------------------------------------------------------------------- /components/global/BottomSheetContainer/components/CheckBoxPair.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/global/BottomSheetContainer/components/CheckBoxPair.tsx -------------------------------------------------------------------------------- /components/global/BottomSheetContainer/components/CustomBg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/global/BottomSheetContainer/components/CustomBg.tsx -------------------------------------------------------------------------------- /components/global/BottomSheetContainer/components/DarkModeView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/global/BottomSheetContainer/components/DarkModeView.tsx -------------------------------------------------------------------------------- /components/global/BottomSheetContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/global/BottomSheetContainer/index.tsx -------------------------------------------------------------------------------- /components/global/Buttons/AddPostButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/global/Buttons/AddPostButton.tsx -------------------------------------------------------------------------------- /components/global/Buttons/BottomBarButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/global/Buttons/BottomBarButtons.tsx -------------------------------------------------------------------------------- /components/global/Buttons/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/global/Buttons/Button.tsx -------------------------------------------------------------------------------- /components/global/Buttons/IconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/global/Buttons/IconButton.tsx -------------------------------------------------------------------------------- /components/global/Modal/LoadingOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/global/Modal/LoadingOverlay.tsx -------------------------------------------------------------------------------- /components/global/Toast/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/global/Toast/index.tsx -------------------------------------------------------------------------------- /components/home/drawer/CustomDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/drawer/CustomDrawer.tsx -------------------------------------------------------------------------------- /components/home/drawer/HeaderDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/drawer/HeaderDrawer.tsx -------------------------------------------------------------------------------- /components/home/header/CustomDrawerHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/header/CustomDrawerHeader.tsx -------------------------------------------------------------------------------- /components/home/header/ProfileButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/header/ProfileButton.tsx -------------------------------------------------------------------------------- /components/home/misc/EmptyList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/misc/EmptyList.tsx -------------------------------------------------------------------------------- /components/home/misc/Skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/misc/Skeleton.tsx -------------------------------------------------------------------------------- /components/home/misc/SkeletonGroupPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/misc/SkeletonGroupPost.tsx -------------------------------------------------------------------------------- /components/home/post/FullScreenPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/FullScreenPost.tsx -------------------------------------------------------------------------------- /components/home/post/PostBuilder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/PostBuilder.tsx -------------------------------------------------------------------------------- /components/home/post/comment/CommentBuilder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/comment/CommentBuilder.tsx -------------------------------------------------------------------------------- /components/home/post/comment/PostButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/comment/PostButton.tsx -------------------------------------------------------------------------------- /components/home/post/components/AudioPlayLottie.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/components/AudioPlayLottie.tsx -------------------------------------------------------------------------------- /components/home/post/components/AudioPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/components/AudioPost.tsx -------------------------------------------------------------------------------- /components/home/post/components/CommentButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/components/CommentButton.tsx -------------------------------------------------------------------------------- /components/home/post/components/EmptyLottie.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/components/EmptyLottie.tsx -------------------------------------------------------------------------------- /components/home/post/components/Engagements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/components/Engagements.tsx -------------------------------------------------------------------------------- /components/home/post/components/EngagementsFullScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/components/EngagementsFullScreen.tsx -------------------------------------------------------------------------------- /components/home/post/components/Fab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/components/Fab.tsx -------------------------------------------------------------------------------- /components/home/post/components/LikeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/components/LikeButton.tsx -------------------------------------------------------------------------------- /components/home/post/components/LinkPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/components/LinkPost.tsx -------------------------------------------------------------------------------- /components/home/post/components/LoadingIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/components/LoadingIndicator.tsx -------------------------------------------------------------------------------- /components/home/post/components/NameAndTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/components/NameAndTag.tsx -------------------------------------------------------------------------------- /components/home/post/components/NameAndTagFullScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/components/NameAndTagFullScreen.tsx -------------------------------------------------------------------------------- /components/home/post/components/PhotoPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/components/PhotoPost.tsx -------------------------------------------------------------------------------- /components/home/post/components/PhotoPostFullScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/components/PhotoPostFullScreen.tsx -------------------------------------------------------------------------------- /components/home/post/components/ProfileImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/components/ProfileImage.tsx -------------------------------------------------------------------------------- /components/home/post/components/RepostButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/components/RepostButton.tsx -------------------------------------------------------------------------------- /components/home/post/components/RingAudio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/components/RingAudio.tsx -------------------------------------------------------------------------------- /components/home/post/components/TextPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/components/TextPost.tsx -------------------------------------------------------------------------------- /components/home/post/components/VideoPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/components/VideoPost.tsx -------------------------------------------------------------------------------- /components/home/post/components/VideoPostForFullScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/components/VideoPostForFullScreen.tsx -------------------------------------------------------------------------------- /components/home/post/misc/EngagementText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/misc/EngagementText.tsx -------------------------------------------------------------------------------- /components/home/post/misc/Robot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/misc/Robot.tsx -------------------------------------------------------------------------------- /components/home/post/testVideo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/home/post/testVideo.tsx -------------------------------------------------------------------------------- /components/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/icons/index.tsx -------------------------------------------------------------------------------- /components/messages/ChatList/ChatListView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/messages/ChatList/ChatListView.tsx -------------------------------------------------------------------------------- /components/messages/ChatList/ChatModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/messages/ChatList/ChatModal.tsx -------------------------------------------------------------------------------- /components/messages/ChatList/Fab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/messages/ChatList/Fab.tsx -------------------------------------------------------------------------------- /components/messages/ChatList/ListContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/messages/ChatList/ListContainer.tsx -------------------------------------------------------------------------------- /components/messages/ChatList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/messages/ChatList/index.tsx -------------------------------------------------------------------------------- /components/messages/Recent/AvatarName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/messages/Recent/AvatarName.tsx -------------------------------------------------------------------------------- /components/messages/Recent/Me.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/messages/Recent/Me.tsx -------------------------------------------------------------------------------- /components/messages/Recent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/messages/Recent/index.tsx -------------------------------------------------------------------------------- /components/notifications/NotifLottie.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/notifications/NotifLottie.tsx -------------------------------------------------------------------------------- /components/notifications/NotificationBuilder/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/notifications/NotificationBuilder/index.tsx -------------------------------------------------------------------------------- /components/postContent/PickAudioButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/postContent/PickAudioButton.tsx -------------------------------------------------------------------------------- /components/postContent/PickImageButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/postContent/PickImageButton.tsx -------------------------------------------------------------------------------- /components/postContent/PickVideoButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/postContent/PickVideoButton.tsx -------------------------------------------------------------------------------- /components/postContent/PostButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/postContent/PostButton.tsx -------------------------------------------------------------------------------- /components/postContent/TextArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/postContent/TextArea.tsx -------------------------------------------------------------------------------- /components/postContent/VideoTextArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/postContent/VideoTextArea.tsx -------------------------------------------------------------------------------- /components/profile/Bio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/profile/Bio.tsx -------------------------------------------------------------------------------- /components/profile/EditProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/profile/EditProfile.tsx -------------------------------------------------------------------------------- /components/profile/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/profile/Header.tsx -------------------------------------------------------------------------------- /components/profile/UploadGif.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/profile/UploadGif.tsx -------------------------------------------------------------------------------- /components/profile/UploadPhotoModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/profile/UploadPhotoModal.tsx -------------------------------------------------------------------------------- /components/profile/UploadPic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/profile/UploadPic.tsx -------------------------------------------------------------------------------- /components/profilePeople/Bio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/profilePeople/Bio.tsx -------------------------------------------------------------------------------- /components/profilePeople/FollowerUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/profilePeople/FollowerUser.tsx -------------------------------------------------------------------------------- /components/profilePeople/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/profilePeople/Header.tsx -------------------------------------------------------------------------------- /components/profilePeople/ViewProfilePhoto.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/profilePeople/ViewProfilePhoto.tsx -------------------------------------------------------------------------------- /components/searchUser/SearchBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/searchUser/SearchBox.tsx -------------------------------------------------------------------------------- /components/searchUser/UserContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/components/searchUser/UserContainer.tsx -------------------------------------------------------------------------------- /credentials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/credentials.json -------------------------------------------------------------------------------- /data/chatDummyData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/data/chatDummyData.ts -------------------------------------------------------------------------------- /data/dummyChat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/data/dummyChat.ts -------------------------------------------------------------------------------- /data/murphy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/data/murphy.ts -------------------------------------------------------------------------------- /data/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/data/test.ts -------------------------------------------------------------------------------- /eas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/eas.json -------------------------------------------------------------------------------- /google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/google-services.json -------------------------------------------------------------------------------- /hooks/Debounce.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/hooks/Debounce.tsx -------------------------------------------------------------------------------- /hooks/GetMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/hooks/GetMode.tsx -------------------------------------------------------------------------------- /hooks/Socket.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/hooks/Socket.tsx -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Podfile.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/ios/Podfile.properties.json -------------------------------------------------------------------------------- /ios/Qui.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/ios/Qui.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Qui.xcodeproj/xcshareddata/xcschemes/Qui.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/ios/Qui.xcodeproj/xcshareddata/xcschemes/Qui.xcscheme -------------------------------------------------------------------------------- /ios/Qui.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/ios/Qui.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Qui/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/ios/Qui/AppDelegate.h -------------------------------------------------------------------------------- /ios/Qui/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/ios/Qui/AppDelegate.mm -------------------------------------------------------------------------------- /ios/Qui/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/ios/Qui/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Qui/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/ios/Qui/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Qui/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/ios/Qui/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/Qui/Images.xcassets/SplashScreen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/ios/Qui/Images.xcassets/SplashScreen.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Qui/Images.xcassets/SplashScreen.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/ios/Qui/Images.xcassets/SplashScreen.imageset/image.png -------------------------------------------------------------------------------- /ios/Qui/Images.xcassets/SplashScreenBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/ios/Qui/Images.xcassets/SplashScreenBackground.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Qui/Images.xcassets/SplashScreenBackground.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/ios/Qui/Images.xcassets/SplashScreenBackground.imageset/image.png -------------------------------------------------------------------------------- /ios/Qui/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/ios/Qui/Info.plist -------------------------------------------------------------------------------- /ios/Qui/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/ios/Qui/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /ios/Qui/Qui-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/ios/Qui/Qui-Bridging-Header.h -------------------------------------------------------------------------------- /ios/Qui/Qui.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/ios/Qui/Qui.entitlements -------------------------------------------------------------------------------- /ios/Qui/SplashScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/ios/Qui/SplashScreen.storyboard -------------------------------------------------------------------------------- /ios/Qui/Supporting/Expo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/ios/Qui/Supporting/Expo.plist -------------------------------------------------------------------------------- /ios/Qui/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/ios/Qui/main.m -------------------------------------------------------------------------------- /ios/Qui/noop-file.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/ios/Qui/noop-file.swift -------------------------------------------------------------------------------- /models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/models.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/package.json -------------------------------------------------------------------------------- /redux/api/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/redux/api/auth.ts -------------------------------------------------------------------------------- /redux/api/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/redux/api/chat.ts -------------------------------------------------------------------------------- /redux/api/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/redux/api/services.ts -------------------------------------------------------------------------------- /redux/api/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/redux/api/user.ts -------------------------------------------------------------------------------- /redux/hooks/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/redux/hooks/hooks.ts -------------------------------------------------------------------------------- /redux/slice/bottomSheet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/redux/slice/bottomSheet/index.tsx -------------------------------------------------------------------------------- /redux/slice/chat/chatlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/redux/slice/chat/chatlist.ts -------------------------------------------------------------------------------- /redux/slice/chat/online.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/redux/slice/chat/online.ts -------------------------------------------------------------------------------- /redux/slice/currentPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/redux/slice/currentPage/index.ts -------------------------------------------------------------------------------- /redux/slice/modal/loading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/redux/slice/modal/loading.ts -------------------------------------------------------------------------------- /redux/slice/people/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/redux/slice/people/search.ts -------------------------------------------------------------------------------- /redux/slice/post/audio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/redux/slice/post/audio.ts -------------------------------------------------------------------------------- /redux/slice/post/followed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/redux/slice/post/followed.ts -------------------------------------------------------------------------------- /redux/slice/post/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/redux/slice/post/index.ts -------------------------------------------------------------------------------- /redux/slice/post/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/redux/slice/post/search.ts -------------------------------------------------------------------------------- /redux/slice/prefs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/redux/slice/prefs/index.ts -------------------------------------------------------------------------------- /redux/slice/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/redux/slice/routes/index.ts -------------------------------------------------------------------------------- /redux/slice/toast/toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/redux/slice/toast/toast.ts -------------------------------------------------------------------------------- /redux/slice/user/followers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/redux/slice/user/followers.ts -------------------------------------------------------------------------------- /redux/slice/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/redux/slice/user/index.ts -------------------------------------------------------------------------------- /redux/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/redux/storage.ts -------------------------------------------------------------------------------- /redux/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/redux/store.ts -------------------------------------------------------------------------------- /routes/Auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/routes/Auth.tsx -------------------------------------------------------------------------------- /routes/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/routes/Main.tsx -------------------------------------------------------------------------------- /routes/Main/BottomNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/routes/Main/BottomNavigation.tsx -------------------------------------------------------------------------------- /routes/Main/DrawerNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/routes/Main/DrawerNavigation.tsx -------------------------------------------------------------------------------- /routes/OnBoard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/routes/OnBoard.tsx -------------------------------------------------------------------------------- /screen/App/ChangeData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/ChangeData.tsx -------------------------------------------------------------------------------- /screen/App/ChangeData/ChangeName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/ChangeData/ChangeName.tsx -------------------------------------------------------------------------------- /screen/App/ChangeData/ChangePassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/ChangeData/ChangePassword.tsx -------------------------------------------------------------------------------- /screen/App/ChangeData/ChangeUserName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/ChangeData/ChangeUserName.tsx -------------------------------------------------------------------------------- /screen/App/ChangeData/DeleteAccountModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/ChangeData/DeleteAccountModal.tsx -------------------------------------------------------------------------------- /screen/App/ChatScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/ChatScreen.tsx -------------------------------------------------------------------------------- /screen/App/Discover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/Discover.tsx -------------------------------------------------------------------------------- /screen/App/DiscoverScreens/Posts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/DiscoverScreens/Posts.tsx -------------------------------------------------------------------------------- /screen/App/DiscoverScreens/Users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/DiscoverScreens/Users.tsx -------------------------------------------------------------------------------- /screen/App/EditProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/EditProfile.tsx -------------------------------------------------------------------------------- /screen/App/FollowingFollowerScreens/Followers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/FollowingFollowerScreens/Followers.tsx -------------------------------------------------------------------------------- /screen/App/FollowingFollowerScreens/Following.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/FollowingFollowerScreens/Following.tsx -------------------------------------------------------------------------------- /screen/App/FollowingFollowers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/FollowingFollowers.tsx -------------------------------------------------------------------------------- /screen/App/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/Home.tsx -------------------------------------------------------------------------------- /screen/App/HomeScreens/HomeAll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/HomeScreens/HomeAll.tsx -------------------------------------------------------------------------------- /screen/App/HomeScreens/HomeFollowed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/HomeScreens/HomeFollowed.tsx -------------------------------------------------------------------------------- /screen/App/ImageFullScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/ImageFullScreen.tsx -------------------------------------------------------------------------------- /screen/App/Messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/Messages.tsx -------------------------------------------------------------------------------- /screen/App/Notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/Notifications.tsx -------------------------------------------------------------------------------- /screen/App/Post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/Post.tsx -------------------------------------------------------------------------------- /screen/App/PostContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/PostContent.tsx -------------------------------------------------------------------------------- /screen/App/PostScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/PostScreen.tsx -------------------------------------------------------------------------------- /screen/App/Profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/Profile.tsx -------------------------------------------------------------------------------- /screen/App/ProfilePeople.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/ProfilePeople.tsx -------------------------------------------------------------------------------- /screen/App/ProfileScreens/MyPosts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/ProfileScreens/MyPosts.tsx -------------------------------------------------------------------------------- /screen/App/ProfileScreens/PeoplePosts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/ProfileScreens/PeoplePosts.tsx -------------------------------------------------------------------------------- /screen/App/SearchUsers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/SearchUsers.tsx -------------------------------------------------------------------------------- /screen/App/VideoFullScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/App/VideoFullScreen.tsx -------------------------------------------------------------------------------- /screen/Auth/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/Auth/Login.tsx -------------------------------------------------------------------------------- /screen/Auth/Register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/Auth/Register.tsx -------------------------------------------------------------------------------- /screen/Auth/components/InputPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/Auth/components/InputPassword.tsx -------------------------------------------------------------------------------- /screen/Auth/components/InputText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/Auth/components/InputText.tsx -------------------------------------------------------------------------------- /screen/Onboard/components/OnboardBuilder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/Onboard/components/OnboardBuilder.tsx -------------------------------------------------------------------------------- /screen/Onboard/components/TrackerTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/Onboard/components/TrackerTag.tsx -------------------------------------------------------------------------------- /screen/Onboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screen/Onboard/index.tsx -------------------------------------------------------------------------------- /screenshot/qui.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/screenshot/qui.gif -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/types/api.ts -------------------------------------------------------------------------------- /types/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/types/app.ts -------------------------------------------------------------------------------- /types/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/types/navigation.ts -------------------------------------------------------------------------------- /types/socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/types/socket.ts -------------------------------------------------------------------------------- /util/chatSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/util/chatSearch.ts -------------------------------------------------------------------------------- /util/convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/util/convert.ts -------------------------------------------------------------------------------- /util/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/util/date.ts -------------------------------------------------------------------------------- /util/emoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/util/emoji.ts -------------------------------------------------------------------------------- /util/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/util/notification.ts -------------------------------------------------------------------------------- /util/socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElSierra/Social-app-React-Native/HEAD/util/socket.ts --------------------------------------------------------------------------------