├── InstagramRedesignConcept.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── raphael.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── InstagramRedesignConcept ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── accent.colorset │ │ └── Contents.json │ ├── background.colorset │ │ └── Contents.json │ ├── foreground.colorset │ │ └── Contents.json │ ├── instagram.imageset │ │ ├── Contents.json │ │ └── instagram.png │ ├── post1.imageset │ │ ├── Contents.json │ │ └── dieter-schafer-b6NiWBQ8kno-unsplash.jpg │ ├── post2.imageset │ │ ├── Contents.json │ │ └── photo-1526819945808-268890ae8b32.jpeg │ ├── post3.imageset │ │ ├── Contents.json │ │ └── guilherme-stecanella-587579-unsplash.jpg │ ├── post4.imageset │ │ ├── 596ca20ac8283-royalty-free-thumbnail.jpg │ │ └── Contents.json │ ├── post5.imageset │ │ ├── Contents.json │ │ └── travel-lead.jpg │ ├── profile.imageset │ │ ├── 554a6fddfec6ce4b4a51b959627336dc.jpg │ │ └── Contents.json │ ├── profile1.imageset │ │ ├── Contents.json │ │ └── profile1.jpg │ ├── profile2.imageset │ │ ├── Contents.json │ │ └── profile2.jpg │ ├── profile3.imageset │ │ ├── Contents.json │ │ └── profile3.jpg │ ├── profile4.imageset │ │ ├── Contents.json │ │ └── profile4.jpg │ ├── profile5.imageset │ │ ├── Contents.json │ │ └── profile5.jpg │ └── profile6.imageset │ │ ├── Contents.json │ │ └── profile6.jpg ├── Info.plist └── Preview Content │ └── Preview Assets.xcassets │ └── Contents.json ├── README.md ├── Shared ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── ContentView.swift ├── InstagramRedesignConceptMacApp.swift └── View │ ├── StoriesView.swift │ └── StoryItemView.swift ├── iOS ├── Info.plist └── View │ ├── ContentView.swift │ ├── CustomNavigationView.swift │ ├── HomeView.swift │ ├── InstagramRedesignConceptApp.swift │ ├── PostSocialView.swift │ ├── PostView.swift │ ├── ProfileView.swift │ ├── TabBarShape.swift │ └── TabBarView.swift └── macOS ├── Info.plist ├── View └── HomeView.swift └── macOS.entitlements /InstagramRedesignConcept.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /InstagramRedesignConcept.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /InstagramRedesignConcept.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /InstagramRedesignConcept.xcodeproj/xcuserdata/raphael.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept.xcodeproj/xcuserdata/raphael.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /InstagramRedesignConcept.xcodeproj/xcuserdata/raphael.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept.xcodeproj/xcuserdata/raphael.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/accent.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/accent.colorset/Contents.json -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/background.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/background.colorset/Contents.json -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/foreground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/foreground.colorset/Contents.json -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/instagram.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/instagram.imageset/Contents.json -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/instagram.imageset/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/instagram.imageset/instagram.png -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/post1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/post1.imageset/Contents.json -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/post1.imageset/dieter-schafer-b6NiWBQ8kno-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/post1.imageset/dieter-schafer-b6NiWBQ8kno-unsplash.jpg -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/post2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/post2.imageset/Contents.json -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/post2.imageset/photo-1526819945808-268890ae8b32.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/post2.imageset/photo-1526819945808-268890ae8b32.jpeg -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/post3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/post3.imageset/Contents.json -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/post3.imageset/guilherme-stecanella-587579-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/post3.imageset/guilherme-stecanella-587579-unsplash.jpg -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/post4.imageset/596ca20ac8283-royalty-free-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/post4.imageset/596ca20ac8283-royalty-free-thumbnail.jpg -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/post4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/post4.imageset/Contents.json -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/post5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/post5.imageset/Contents.json -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/post5.imageset/travel-lead.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/post5.imageset/travel-lead.jpg -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/profile.imageset/554a6fddfec6ce4b4a51b959627336dc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/profile.imageset/554a6fddfec6ce4b4a51b959627336dc.jpg -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/profile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/profile.imageset/Contents.json -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/profile1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/profile1.imageset/Contents.json -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/profile1.imageset/profile1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/profile1.imageset/profile1.jpg -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/profile2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/profile2.imageset/Contents.json -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/profile2.imageset/profile2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/profile2.imageset/profile2.jpg -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/profile3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/profile3.imageset/Contents.json -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/profile3.imageset/profile3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/profile3.imageset/profile3.jpg -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/profile4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/profile4.imageset/Contents.json -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/profile4.imageset/profile4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/profile4.imageset/profile4.jpg -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/profile5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/profile5.imageset/Contents.json -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/profile5.imageset/profile5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/profile5.imageset/profile5.jpg -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/profile6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/profile6.imageset/Contents.json -------------------------------------------------------------------------------- /InstagramRedesignConcept/Assets.xcassets/profile6.imageset/profile6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Assets.xcassets/profile6.imageset/profile6.jpg -------------------------------------------------------------------------------- /InstagramRedesignConcept/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Info.plist -------------------------------------------------------------------------------- /InstagramRedesignConcept/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/InstagramRedesignConcept/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/README.md -------------------------------------------------------------------------------- /Shared/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/Shared/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Shared/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/Shared/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Shared/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/Shared/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Shared/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/Shared/ContentView.swift -------------------------------------------------------------------------------- /Shared/InstagramRedesignConceptMacApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/Shared/InstagramRedesignConceptMacApp.swift -------------------------------------------------------------------------------- /Shared/View/StoriesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/Shared/View/StoriesView.swift -------------------------------------------------------------------------------- /Shared/View/StoryItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/Shared/View/StoryItemView.swift -------------------------------------------------------------------------------- /iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/iOS/Info.plist -------------------------------------------------------------------------------- /iOS/View/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/iOS/View/ContentView.swift -------------------------------------------------------------------------------- /iOS/View/CustomNavigationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/iOS/View/CustomNavigationView.swift -------------------------------------------------------------------------------- /iOS/View/HomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/iOS/View/HomeView.swift -------------------------------------------------------------------------------- /iOS/View/InstagramRedesignConceptApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/iOS/View/InstagramRedesignConceptApp.swift -------------------------------------------------------------------------------- /iOS/View/PostSocialView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/iOS/View/PostSocialView.swift -------------------------------------------------------------------------------- /iOS/View/PostView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/iOS/View/PostView.swift -------------------------------------------------------------------------------- /iOS/View/ProfileView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/iOS/View/ProfileView.swift -------------------------------------------------------------------------------- /iOS/View/TabBarShape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/iOS/View/TabBarShape.swift -------------------------------------------------------------------------------- /iOS/View/TabBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/iOS/View/TabBarView.swift -------------------------------------------------------------------------------- /macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/macOS/Info.plist -------------------------------------------------------------------------------- /macOS/View/HomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/macOS/View/HomeView.swift -------------------------------------------------------------------------------- /macOS/macOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rphlfc/InstagramRedesignConcept/HEAD/macOS/macOS.entitlements --------------------------------------------------------------------------------