├── .gitignore ├── MyInstagram.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── anthonyalbertini.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── anthonyalbertini.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── MyInstagram ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── BackgroundColorScheme.colorset │ │ └── Contents.json │ ├── Contents.json │ ├── SVG │ │ ├── ArrowDown.imageset │ │ │ ├── ArrowDownDark.svg │ │ │ ├── ArrowDownLight.svg │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── Logo.imageset │ │ │ ├── Contents.json │ │ │ ├── LogoDark.svg │ │ │ └── LogoLight.svg │ ├── TextColorScheme.colorset │ │ └── Contents.json │ └── tmp │ │ ├── Contents.json │ │ ├── image_0.imageset │ │ ├── Contents.json │ │ └── images.jpeg │ │ ├── image_1.imageset │ │ ├── Contents.json │ │ └── image_1.jpeg │ │ ├── image_2.imageset │ │ ├── Contents.json │ │ └── image_2.jpeg │ │ ├── image_3.imageset │ │ ├── Contents.json │ │ └── image_3.jpeg │ │ ├── image_4.imageset │ │ ├── Contents.json │ │ └── image_4.jpeg │ │ ├── image_5.imageset │ │ ├── Contents.json │ │ └── image_5.jpeg │ │ ├── image_6.imageset │ │ ├── Contents.json │ │ └── image_6.jpeg │ │ ├── image_7.imageset │ │ ├── Contents.json │ │ └── b6f02e5aa78dcbc329bac5b79c4607ff2dae7b8c.jpeg │ │ ├── image_8.imageset │ │ ├── Contents.json │ │ └── animal-g27eef947d_1280-1080x675.jpg │ │ └── image_9.imageset │ │ ├── 5205da78-lat11_breves_singe-1200x675.jpg │ │ └── Contents.json ├── Component │ ├── AdaptiveView.swift │ ├── PostFooterIconView.swift │ ├── PostFooterView.swift │ ├── PostHeaderView.swift │ ├── PostView.swift │ └── StoryView.swift ├── Models │ └── User.swift ├── MyInstagramApp.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Shared │ ├── Animations.swift │ ├── ConditionalModifier.swift │ ├── Extensions │ │ └── FormattedWithSeparator.swift │ └── Settings.swift └── View │ ├── ContentView.swift │ ├── HomeView.swift │ ├── ProfileView.swift │ ├── ReelView.swift │ ├── SearchView.swift │ └── ShopView.swift ├── README.md └── docs └── app.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/.gitignore -------------------------------------------------------------------------------- /MyInstagram.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MyInstagram.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MyInstagram.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /MyInstagram.xcodeproj/project.xcworkspace/xcuserdata/anthonyalbertini.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram.xcodeproj/project.xcworkspace/xcuserdata/anthonyalbertini.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /MyInstagram.xcodeproj/xcuserdata/anthonyalbertini.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram.xcodeproj/xcuserdata/anthonyalbertini.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /MyInstagram.xcodeproj/xcuserdata/anthonyalbertini.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram.xcodeproj/xcuserdata/anthonyalbertini.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/BackgroundColorScheme.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/BackgroundColorScheme.colorset/Contents.json -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/SVG/ArrowDown.imageset/ArrowDownDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/SVG/ArrowDown.imageset/ArrowDownDark.svg -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/SVG/ArrowDown.imageset/ArrowDownLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/SVG/ArrowDown.imageset/ArrowDownLight.svg -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/SVG/ArrowDown.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/SVG/ArrowDown.imageset/Contents.json -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/SVG/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/SVG/Contents.json -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/SVG/Logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/SVG/Logo.imageset/Contents.json -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/SVG/Logo.imageset/LogoDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/SVG/Logo.imageset/LogoDark.svg -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/SVG/Logo.imageset/LogoLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/SVG/Logo.imageset/LogoLight.svg -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/TextColorScheme.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/TextColorScheme.colorset/Contents.json -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/tmp/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/tmp/Contents.json -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/tmp/image_0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/tmp/image_0.imageset/Contents.json -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/tmp/image_0.imageset/images.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/tmp/image_0.imageset/images.jpeg -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/tmp/image_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/tmp/image_1.imageset/Contents.json -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/tmp/image_1.imageset/image_1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/tmp/image_1.imageset/image_1.jpeg -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/tmp/image_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/tmp/image_2.imageset/Contents.json -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/tmp/image_2.imageset/image_2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/tmp/image_2.imageset/image_2.jpeg -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/tmp/image_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/tmp/image_3.imageset/Contents.json -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/tmp/image_3.imageset/image_3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/tmp/image_3.imageset/image_3.jpeg -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/tmp/image_4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/tmp/image_4.imageset/Contents.json -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/tmp/image_4.imageset/image_4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/tmp/image_4.imageset/image_4.jpeg -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/tmp/image_5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/tmp/image_5.imageset/Contents.json -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/tmp/image_5.imageset/image_5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/tmp/image_5.imageset/image_5.jpeg -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/tmp/image_6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/tmp/image_6.imageset/Contents.json -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/tmp/image_6.imageset/image_6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/tmp/image_6.imageset/image_6.jpeg -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/tmp/image_7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/tmp/image_7.imageset/Contents.json -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/tmp/image_7.imageset/b6f02e5aa78dcbc329bac5b79c4607ff2dae7b8c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/tmp/image_7.imageset/b6f02e5aa78dcbc329bac5b79c4607ff2dae7b8c.jpeg -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/tmp/image_8.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/tmp/image_8.imageset/Contents.json -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/tmp/image_8.imageset/animal-g27eef947d_1280-1080x675.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/tmp/image_8.imageset/animal-g27eef947d_1280-1080x675.jpg -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/tmp/image_9.imageset/5205da78-lat11_breves_singe-1200x675.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/tmp/image_9.imageset/5205da78-lat11_breves_singe-1200x675.jpg -------------------------------------------------------------------------------- /MyInstagram/Assets.xcassets/tmp/image_9.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Assets.xcassets/tmp/image_9.imageset/Contents.json -------------------------------------------------------------------------------- /MyInstagram/Component/AdaptiveView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Component/AdaptiveView.swift -------------------------------------------------------------------------------- /MyInstagram/Component/PostFooterIconView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Component/PostFooterIconView.swift -------------------------------------------------------------------------------- /MyInstagram/Component/PostFooterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Component/PostFooterView.swift -------------------------------------------------------------------------------- /MyInstagram/Component/PostHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Component/PostHeaderView.swift -------------------------------------------------------------------------------- /MyInstagram/Component/PostView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Component/PostView.swift -------------------------------------------------------------------------------- /MyInstagram/Component/StoryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Component/StoryView.swift -------------------------------------------------------------------------------- /MyInstagram/Models/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Models/User.swift -------------------------------------------------------------------------------- /MyInstagram/MyInstagramApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/MyInstagramApp.swift -------------------------------------------------------------------------------- /MyInstagram/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MyInstagram/Shared/Animations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Shared/Animations.swift -------------------------------------------------------------------------------- /MyInstagram/Shared/ConditionalModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Shared/ConditionalModifier.swift -------------------------------------------------------------------------------- /MyInstagram/Shared/Extensions/FormattedWithSeparator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Shared/Extensions/FormattedWithSeparator.swift -------------------------------------------------------------------------------- /MyInstagram/Shared/Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/Shared/Settings.swift -------------------------------------------------------------------------------- /MyInstagram/View/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/View/ContentView.swift -------------------------------------------------------------------------------- /MyInstagram/View/HomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/View/HomeView.swift -------------------------------------------------------------------------------- /MyInstagram/View/ProfileView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/View/ProfileView.swift -------------------------------------------------------------------------------- /MyInstagram/View/ReelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/View/ReelView.swift -------------------------------------------------------------------------------- /MyInstagram/View/SearchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/View/SearchView.swift -------------------------------------------------------------------------------- /MyInstagram/View/ShopView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/MyInstagram/View/ShopView.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/README.md -------------------------------------------------------------------------------- /docs/app.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiki-le-singe/MyInstagramApp/HEAD/docs/app.gif --------------------------------------------------------------------------------