├── .buckconfig ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.tsx ├── LICENSE ├── README.md ├── __tests__ └── App-test.tsx ├── _prettierrc.js ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── AntDesign.ttf │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ ├── Fontisto.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── Roboto.ttf │ │ │ ├── Roboto_medium.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ ├── Zocial.ttf │ │ │ └── rubicon-icon-font.ttf │ │ ├── java │ │ └── com │ │ │ └── instagramclone │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios ├── InstagramClone-tvOS │ └── Info.plist ├── InstagramClone-tvOSTests │ └── Info.plist ├── InstagramClone.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── InstagramClone-tvOS.xcscheme │ │ └── InstagramClone.xcscheme ├── InstagramClone.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── InstagramClone │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── insta.imageset │ │ │ ├── Contents.json │ │ │ └── insta.jpeg │ ├── Info.plist │ └── main.m ├── InstagramCloneTests │ ├── Info.plist │ └── InstagramCloneTests.m ├── Podfile └── Podfile.lock ├── metro.config.js ├── package.json ├── src ├── assets │ ├── images │ │ ├── add.png │ │ ├── camera.png │ │ ├── camera_take.jpg │ │ ├── chevron_left.png │ │ ├── close.png │ │ ├── collection.png │ │ ├── comment.png │ │ ├── direct.png │ │ ├── heart.jpg │ │ ├── heart_red.png │ │ ├── home.png │ │ ├── ic1.png │ │ ├── ic10.png │ │ ├── ic11.png │ │ ├── ic2.png │ │ ├── ic3.png │ │ ├── ic4.png │ │ ├── ic5.png │ │ ├── ic6.png │ │ ├── ic7.png │ │ ├── ic8.png │ │ ├── ic_camera_front_white.jpg │ │ ├── ic_camera_front_white.png │ │ ├── ic_camera_front_white@2x.png │ │ ├── ic_camera_front_white@3x.png │ │ ├── ic_camera_rear_white.png │ │ ├── ic_camera_rear_white@2x.png │ │ ├── ic_camera_rear_white@3x.png │ │ ├── ic_flash_auto_white.png │ │ ├── ic_flash_auto_white@2x.png │ │ ├── ic_flash_auto_white@3x.png │ │ ├── ic_flash_off_white.png │ │ ├── ic_flash_off_white@2x.png │ │ ├── ic_flash_off_white@3x.png │ │ ├── ic_flash_on_white.png │ │ ├── ic_flash_on_white@2x.png │ │ ├── ic_flash_on_white@3x.png │ │ ├── ic_photo_camera_36pt.png │ │ ├── ic_photo_camera_36pt@2x.png │ │ ├── ic_photo_camera_36pt@3x.png │ │ ├── ic_stop_36pt.png │ │ ├── ic_stop_36pt@2x.png │ │ ├── ic_stop_36pt@3x.png │ │ ├── ic_videocam_36pt.png │ │ ├── ic_videocam_36pt@2x.png │ │ ├── ic_videocam_36pt@3x.png │ │ ├── insta.jpeg │ │ ├── insta.png │ │ ├── live.png │ │ ├── logo.png │ │ ├── plus.png │ │ ├── post1.png │ │ ├── post2.png │ │ ├── post3.png │ │ ├── post4.png │ │ ├── post5.png │ │ ├── post6.png │ │ ├── post7.png │ │ ├── post8.png │ │ ├── post9.png │ │ ├── search.png │ │ ├── tv.png │ │ ├── up.png │ │ └── user.png │ └── svg │ │ ├── camera.svg │ │ ├── camera_black.svg │ │ ├── collection.svg │ │ ├── comment.svg │ │ ├── direct.svg │ │ ├── edit.svg │ │ ├── heart_red.svg │ │ ├── home.svg │ │ ├── list.svg │ │ ├── live.svg │ │ ├── location.svg │ │ ├── logo_text.svg │ │ ├── more.svg │ │ ├── picture.svg │ │ ├── play.svg │ │ ├── play_video.svg │ │ ├── plus.svg │ │ ├── share.svg │ │ └── thumb-up.svg ├── components │ ├── GalleryView │ │ ├── GalleryView.tsx │ │ └── styles.ts │ ├── StorySlide │ │ ├── SlideHearder │ │ │ └── SlideHeader.tsx │ │ ├── SlideItem │ │ │ └── SlideItem.tsx │ │ ├── SlideView │ │ │ └── SlideView.tsx │ │ └── StoriesData │ │ │ └── StoriesData.tsx │ ├── avatarInput │ │ ├── index.tsx │ │ └── styles.ts │ ├── cameraRollPicker │ │ ├── ImageItem.tsx │ │ ├── circle-check.png │ │ ├── index.tsx │ │ └── styles.ts │ ├── cameraView │ │ ├── CameraView.tsx │ │ └── styles.ts │ ├── card │ │ └── CardComponent.tsx │ ├── commentItem │ │ ├── index.tsx │ │ └── styles.ts │ ├── favoriteItem │ │ ├── index.tsx │ │ └── styles.ts │ ├── nestedCell │ │ └── index.tsx │ ├── postItems │ │ ├── PostItem │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ └── index.tsx │ ├── searchTag │ │ ├── index.tsx │ │ └── styles.ts │ ├── separator │ │ └── index.tsx │ ├── storyItems │ │ ├── index.tsx │ │ └── storyItem │ │ │ ├── index.tsx │ │ │ └── styles.ts │ └── toolbar │ │ └── index.tsx ├── containers │ └── Aux │ │ └── index.tsx ├── navigation │ ├── home.tsx │ └── navigation.tsx ├── screens │ ├── Add │ │ ├── index.tsx │ │ └── styles.ts │ ├── Comments │ │ ├── index.tsx │ │ └── styles.ts │ ├── Detail │ │ ├── index.tsx │ │ └── styles.ts │ ├── Favorite │ │ └── index.tsx │ ├── Home │ │ ├── index.tsx │ │ └── styles.ts │ ├── Intro │ │ ├── index.tsx │ │ └── styles.ts │ ├── Profile │ │ └── index.tsx │ ├── Root │ │ ├── index.tsx │ │ └── styles.ts │ └── Search │ │ ├── index.tsx │ │ └── styles.ts ├── screenshots │ ├── Demo.gif │ ├── Demo1.png │ ├── Demo2.png │ ├── Demo3.png │ ├── Demo4.png │ ├── Demo5.png │ ├── Demo6.png │ ├── Demo7.png │ └── Demo8.png └── utils │ ├── Layout.ts │ ├── datas │ ├── avatars.ts │ ├── emojis.ts │ ├── filers.ts │ ├── follows.ts │ ├── postComments.ts │ ├── postImages.ts │ ├── posts.ts │ ├── stories.ts │ └── tags.ts │ ├── methods.tsx │ └── theme.ts ├── tsconfig.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/App.tsx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/__tests__/App-test.tsx -------------------------------------------------------------------------------- /_prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/_prettierrc.js -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Fontisto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/assets/fonts/Fontisto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/rubicon-icon-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/assets/fonts/rubicon-icon-font.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/instagramclone/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/java/com/instagramclone/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/instagramclone/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/java/com/instagramclone/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/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/Doha26/Instagram-clone/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/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/Doha26/Instagram-clone/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/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/Doha26/Instagram-clone/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/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/Doha26/Instagram-clone/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/index.js -------------------------------------------------------------------------------- /ios/InstagramClone-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/ios/InstagramClone-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/InstagramClone-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/ios/InstagramClone-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/InstagramClone.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/ios/InstagramClone.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/InstagramClone.xcodeproj/xcshareddata/xcschemes/InstagramClone-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/ios/InstagramClone.xcodeproj/xcshareddata/xcschemes/InstagramClone-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/InstagramClone.xcodeproj/xcshareddata/xcschemes/InstagramClone.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/ios/InstagramClone.xcodeproj/xcshareddata/xcschemes/InstagramClone.xcscheme -------------------------------------------------------------------------------- /ios/InstagramClone.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/ios/InstagramClone.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/InstagramClone.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/ios/InstagramClone.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/InstagramClone.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/ios/InstagramClone.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/InstagramClone/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/ios/InstagramClone/AppDelegate.h -------------------------------------------------------------------------------- /ios/InstagramClone/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/ios/InstagramClone/AppDelegate.m -------------------------------------------------------------------------------- /ios/InstagramClone/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/ios/InstagramClone/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/InstagramClone/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/ios/InstagramClone/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/InstagramClone/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/ios/InstagramClone/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/InstagramClone/Images.xcassets/insta.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/ios/InstagramClone/Images.xcassets/insta.imageset/Contents.json -------------------------------------------------------------------------------- /ios/InstagramClone/Images.xcassets/insta.imageset/insta.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/ios/InstagramClone/Images.xcassets/insta.imageset/insta.jpeg -------------------------------------------------------------------------------- /ios/InstagramClone/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/ios/InstagramClone/Info.plist -------------------------------------------------------------------------------- /ios/InstagramClone/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/ios/InstagramClone/main.m -------------------------------------------------------------------------------- /ios/InstagramCloneTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/ios/InstagramCloneTests/Info.plist -------------------------------------------------------------------------------- /ios/InstagramCloneTests/InstagramCloneTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/ios/InstagramCloneTests/InstagramCloneTests.m -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/add.png -------------------------------------------------------------------------------- /src/assets/images/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/camera.png -------------------------------------------------------------------------------- /src/assets/images/camera_take.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/camera_take.jpg -------------------------------------------------------------------------------- /src/assets/images/chevron_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/chevron_left.png -------------------------------------------------------------------------------- /src/assets/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/close.png -------------------------------------------------------------------------------- /src/assets/images/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/collection.png -------------------------------------------------------------------------------- /src/assets/images/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/comment.png -------------------------------------------------------------------------------- /src/assets/images/direct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/direct.png -------------------------------------------------------------------------------- /src/assets/images/heart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/heart.jpg -------------------------------------------------------------------------------- /src/assets/images/heart_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/heart_red.png -------------------------------------------------------------------------------- /src/assets/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/home.png -------------------------------------------------------------------------------- /src/assets/images/ic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic1.png -------------------------------------------------------------------------------- /src/assets/images/ic10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic10.png -------------------------------------------------------------------------------- /src/assets/images/ic11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic11.png -------------------------------------------------------------------------------- /src/assets/images/ic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic2.png -------------------------------------------------------------------------------- /src/assets/images/ic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic3.png -------------------------------------------------------------------------------- /src/assets/images/ic4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic4.png -------------------------------------------------------------------------------- /src/assets/images/ic5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic5.png -------------------------------------------------------------------------------- /src/assets/images/ic6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic6.png -------------------------------------------------------------------------------- /src/assets/images/ic7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic7.png -------------------------------------------------------------------------------- /src/assets/images/ic8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic8.png -------------------------------------------------------------------------------- /src/assets/images/ic_camera_front_white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic_camera_front_white.jpg -------------------------------------------------------------------------------- /src/assets/images/ic_camera_front_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic_camera_front_white.png -------------------------------------------------------------------------------- /src/assets/images/ic_camera_front_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic_camera_front_white@2x.png -------------------------------------------------------------------------------- /src/assets/images/ic_camera_front_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic_camera_front_white@3x.png -------------------------------------------------------------------------------- /src/assets/images/ic_camera_rear_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic_camera_rear_white.png -------------------------------------------------------------------------------- /src/assets/images/ic_camera_rear_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic_camera_rear_white@2x.png -------------------------------------------------------------------------------- /src/assets/images/ic_camera_rear_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic_camera_rear_white@3x.png -------------------------------------------------------------------------------- /src/assets/images/ic_flash_auto_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic_flash_auto_white.png -------------------------------------------------------------------------------- /src/assets/images/ic_flash_auto_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic_flash_auto_white@2x.png -------------------------------------------------------------------------------- /src/assets/images/ic_flash_auto_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic_flash_auto_white@3x.png -------------------------------------------------------------------------------- /src/assets/images/ic_flash_off_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic_flash_off_white.png -------------------------------------------------------------------------------- /src/assets/images/ic_flash_off_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic_flash_off_white@2x.png -------------------------------------------------------------------------------- /src/assets/images/ic_flash_off_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic_flash_off_white@3x.png -------------------------------------------------------------------------------- /src/assets/images/ic_flash_on_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic_flash_on_white.png -------------------------------------------------------------------------------- /src/assets/images/ic_flash_on_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic_flash_on_white@2x.png -------------------------------------------------------------------------------- /src/assets/images/ic_flash_on_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic_flash_on_white@3x.png -------------------------------------------------------------------------------- /src/assets/images/ic_photo_camera_36pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic_photo_camera_36pt.png -------------------------------------------------------------------------------- /src/assets/images/ic_photo_camera_36pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic_photo_camera_36pt@2x.png -------------------------------------------------------------------------------- /src/assets/images/ic_photo_camera_36pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic_photo_camera_36pt@3x.png -------------------------------------------------------------------------------- /src/assets/images/ic_stop_36pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic_stop_36pt.png -------------------------------------------------------------------------------- /src/assets/images/ic_stop_36pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic_stop_36pt@2x.png -------------------------------------------------------------------------------- /src/assets/images/ic_stop_36pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic_stop_36pt@3x.png -------------------------------------------------------------------------------- /src/assets/images/ic_videocam_36pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic_videocam_36pt.png -------------------------------------------------------------------------------- /src/assets/images/ic_videocam_36pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic_videocam_36pt@2x.png -------------------------------------------------------------------------------- /src/assets/images/ic_videocam_36pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/ic_videocam_36pt@3x.png -------------------------------------------------------------------------------- /src/assets/images/insta.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/insta.jpeg -------------------------------------------------------------------------------- /src/assets/images/insta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/insta.png -------------------------------------------------------------------------------- /src/assets/images/live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/live.png -------------------------------------------------------------------------------- /src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/logo.png -------------------------------------------------------------------------------- /src/assets/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/plus.png -------------------------------------------------------------------------------- /src/assets/images/post1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/post1.png -------------------------------------------------------------------------------- /src/assets/images/post2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/post2.png -------------------------------------------------------------------------------- /src/assets/images/post3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/post3.png -------------------------------------------------------------------------------- /src/assets/images/post4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/post4.png -------------------------------------------------------------------------------- /src/assets/images/post5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/post5.png -------------------------------------------------------------------------------- /src/assets/images/post6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/post6.png -------------------------------------------------------------------------------- /src/assets/images/post7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/post7.png -------------------------------------------------------------------------------- /src/assets/images/post8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/post8.png -------------------------------------------------------------------------------- /src/assets/images/post9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/post9.png -------------------------------------------------------------------------------- /src/assets/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/search.png -------------------------------------------------------------------------------- /src/assets/images/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/tv.png -------------------------------------------------------------------------------- /src/assets/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/up.png -------------------------------------------------------------------------------- /src/assets/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/images/user.png -------------------------------------------------------------------------------- /src/assets/svg/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/svg/camera.svg -------------------------------------------------------------------------------- /src/assets/svg/camera_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/svg/camera_black.svg -------------------------------------------------------------------------------- /src/assets/svg/collection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/svg/collection.svg -------------------------------------------------------------------------------- /src/assets/svg/comment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/svg/comment.svg -------------------------------------------------------------------------------- /src/assets/svg/direct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/svg/direct.svg -------------------------------------------------------------------------------- /src/assets/svg/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/svg/edit.svg -------------------------------------------------------------------------------- /src/assets/svg/heart_red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/svg/heart_red.svg -------------------------------------------------------------------------------- /src/assets/svg/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/svg/home.svg -------------------------------------------------------------------------------- /src/assets/svg/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/svg/list.svg -------------------------------------------------------------------------------- /src/assets/svg/live.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/svg/live.svg -------------------------------------------------------------------------------- /src/assets/svg/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/svg/location.svg -------------------------------------------------------------------------------- /src/assets/svg/logo_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/svg/logo_text.svg -------------------------------------------------------------------------------- /src/assets/svg/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/svg/more.svg -------------------------------------------------------------------------------- /src/assets/svg/picture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/svg/picture.svg -------------------------------------------------------------------------------- /src/assets/svg/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/svg/play.svg -------------------------------------------------------------------------------- /src/assets/svg/play_video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/svg/play_video.svg -------------------------------------------------------------------------------- /src/assets/svg/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/svg/plus.svg -------------------------------------------------------------------------------- /src/assets/svg/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/svg/share.svg -------------------------------------------------------------------------------- /src/assets/svg/thumb-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/assets/svg/thumb-up.svg -------------------------------------------------------------------------------- /src/components/GalleryView/GalleryView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/GalleryView/GalleryView.tsx -------------------------------------------------------------------------------- /src/components/GalleryView/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/GalleryView/styles.ts -------------------------------------------------------------------------------- /src/components/StorySlide/SlideHearder/SlideHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/StorySlide/SlideHearder/SlideHeader.tsx -------------------------------------------------------------------------------- /src/components/StorySlide/SlideItem/SlideItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/StorySlide/SlideItem/SlideItem.tsx -------------------------------------------------------------------------------- /src/components/StorySlide/SlideView/SlideView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/StorySlide/SlideView/SlideView.tsx -------------------------------------------------------------------------------- /src/components/StorySlide/StoriesData/StoriesData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/StorySlide/StoriesData/StoriesData.tsx -------------------------------------------------------------------------------- /src/components/avatarInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/avatarInput/index.tsx -------------------------------------------------------------------------------- /src/components/avatarInput/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/avatarInput/styles.ts -------------------------------------------------------------------------------- /src/components/cameraRollPicker/ImageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/cameraRollPicker/ImageItem.tsx -------------------------------------------------------------------------------- /src/components/cameraRollPicker/circle-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/cameraRollPicker/circle-check.png -------------------------------------------------------------------------------- /src/components/cameraRollPicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/cameraRollPicker/index.tsx -------------------------------------------------------------------------------- /src/components/cameraRollPicker/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/cameraRollPicker/styles.ts -------------------------------------------------------------------------------- /src/components/cameraView/CameraView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/cameraView/CameraView.tsx -------------------------------------------------------------------------------- /src/components/cameraView/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/cameraView/styles.ts -------------------------------------------------------------------------------- /src/components/card/CardComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/card/CardComponent.tsx -------------------------------------------------------------------------------- /src/components/commentItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/commentItem/index.tsx -------------------------------------------------------------------------------- /src/components/commentItem/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/commentItem/styles.ts -------------------------------------------------------------------------------- /src/components/favoriteItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/favoriteItem/index.tsx -------------------------------------------------------------------------------- /src/components/favoriteItem/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/favoriteItem/styles.ts -------------------------------------------------------------------------------- /src/components/nestedCell/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/nestedCell/index.tsx -------------------------------------------------------------------------------- /src/components/postItems/PostItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/postItems/PostItem/index.tsx -------------------------------------------------------------------------------- /src/components/postItems/PostItem/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/postItems/PostItem/styles.ts -------------------------------------------------------------------------------- /src/components/postItems/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/postItems/index.tsx -------------------------------------------------------------------------------- /src/components/searchTag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/searchTag/index.tsx -------------------------------------------------------------------------------- /src/components/searchTag/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/searchTag/styles.ts -------------------------------------------------------------------------------- /src/components/separator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/separator/index.tsx -------------------------------------------------------------------------------- /src/components/storyItems/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/storyItems/index.tsx -------------------------------------------------------------------------------- /src/components/storyItems/storyItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/storyItems/storyItem/index.tsx -------------------------------------------------------------------------------- /src/components/storyItems/storyItem/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/storyItems/storyItem/styles.ts -------------------------------------------------------------------------------- /src/components/toolbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/components/toolbar/index.tsx -------------------------------------------------------------------------------- /src/containers/Aux/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/containers/Aux/index.tsx -------------------------------------------------------------------------------- /src/navigation/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/navigation/home.tsx -------------------------------------------------------------------------------- /src/navigation/navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/navigation/navigation.tsx -------------------------------------------------------------------------------- /src/screens/Add/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/screens/Add/index.tsx -------------------------------------------------------------------------------- /src/screens/Add/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/screens/Add/styles.ts -------------------------------------------------------------------------------- /src/screens/Comments/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/screens/Comments/index.tsx -------------------------------------------------------------------------------- /src/screens/Comments/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/screens/Comments/styles.ts -------------------------------------------------------------------------------- /src/screens/Detail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/screens/Detail/index.tsx -------------------------------------------------------------------------------- /src/screens/Detail/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/screens/Detail/styles.ts -------------------------------------------------------------------------------- /src/screens/Favorite/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/screens/Favorite/index.tsx -------------------------------------------------------------------------------- /src/screens/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/screens/Home/index.tsx -------------------------------------------------------------------------------- /src/screens/Home/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/screens/Home/styles.ts -------------------------------------------------------------------------------- /src/screens/Intro/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/screens/Intro/index.tsx -------------------------------------------------------------------------------- /src/screens/Intro/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/screens/Intro/styles.ts -------------------------------------------------------------------------------- /src/screens/Profile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/screens/Profile/index.tsx -------------------------------------------------------------------------------- /src/screens/Root/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/screens/Root/index.tsx -------------------------------------------------------------------------------- /src/screens/Root/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/screens/Root/styles.ts -------------------------------------------------------------------------------- /src/screens/Search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/screens/Search/index.tsx -------------------------------------------------------------------------------- /src/screens/Search/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/screens/Search/styles.ts -------------------------------------------------------------------------------- /src/screenshots/Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/screenshots/Demo.gif -------------------------------------------------------------------------------- /src/screenshots/Demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/screenshots/Demo1.png -------------------------------------------------------------------------------- /src/screenshots/Demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/screenshots/Demo2.png -------------------------------------------------------------------------------- /src/screenshots/Demo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/screenshots/Demo3.png -------------------------------------------------------------------------------- /src/screenshots/Demo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/screenshots/Demo4.png -------------------------------------------------------------------------------- /src/screenshots/Demo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/screenshots/Demo5.png -------------------------------------------------------------------------------- /src/screenshots/Demo6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/screenshots/Demo6.png -------------------------------------------------------------------------------- /src/screenshots/Demo7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/screenshots/Demo7.png -------------------------------------------------------------------------------- /src/screenshots/Demo8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/screenshots/Demo8.png -------------------------------------------------------------------------------- /src/utils/Layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/utils/Layout.ts -------------------------------------------------------------------------------- /src/utils/datas/avatars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/utils/datas/avatars.ts -------------------------------------------------------------------------------- /src/utils/datas/emojis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/utils/datas/emojis.ts -------------------------------------------------------------------------------- /src/utils/datas/filers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/utils/datas/filers.ts -------------------------------------------------------------------------------- /src/utils/datas/follows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/utils/datas/follows.ts -------------------------------------------------------------------------------- /src/utils/datas/postComments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/utils/datas/postComments.ts -------------------------------------------------------------------------------- /src/utils/datas/postImages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/utils/datas/postImages.ts -------------------------------------------------------------------------------- /src/utils/datas/posts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/utils/datas/posts.ts -------------------------------------------------------------------------------- /src/utils/datas/stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/utils/datas/stories.ts -------------------------------------------------------------------------------- /src/utils/datas/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/utils/datas/tags.ts -------------------------------------------------------------------------------- /src/utils/methods.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/utils/methods.tsx -------------------------------------------------------------------------------- /src/utils/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/src/utils/theme.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Instagram-clone/HEAD/yarn.lock --------------------------------------------------------------------------------