├── .DS_Store ├── .gitignore ├── LinkedInUI.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LinkedInUI ├── .DS_Store ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── Add.imageset │ │ ├── Contents.json │ │ ├── Group.png │ │ ├── Group@2x.png │ │ └── Group@3x.png │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── Image │ │ ├── Contents.json │ │ ├── image1.imageset │ │ │ ├── Contents.json │ │ │ └── valdemars-magone-8ACtYtJ5G-E-unsplash.jpg │ │ ├── image10.imageset │ │ │ ├── Contents.json │ │ │ └── brooke-cagle-wKOKidNT14w-unsplash.jpeg │ │ ├── image11.imageset │ │ │ ├── Contents.json │ │ │ └── mubariz-mehdizadeh-Py8F6-hRn5o-unsplash.jpeg │ │ ├── image12.imageset │ │ │ ├── Contents.json │ │ │ └── taylor-grote-UiVe5QvOhao-unsplash.jpeg │ │ ├── image13.imageset │ │ │ ├── Contents.json │ │ │ └── tyler-nix-ZGa9d1a_4tA-unsplash.jpeg │ │ ├── image2.imageset │ │ │ ├── Contents.json │ │ │ └── anne-peres-plsF6obTgms-unsplash.jpeg │ │ ├── image3.imageset │ │ │ ├── Contents.json │ │ │ └── ayo-ogunseinde-sibVwORYqs0-unsplash.jpeg │ │ ├── image4.imageset │ │ │ ├── Contents.json │ │ │ └── joshua-rawson-harris-6PROVhY2Yq4-unsplash.jpeg │ │ ├── image5.imageset │ │ │ ├── Contents.json │ │ │ └── joshua-rondeau-ZnHRNtwXg6Q-unsplash.jpeg │ │ ├── image6.imageset │ │ │ ├── Contents.json │ │ │ └── ionut-comanici-RDcEWH5hSDE-unsplash.jpeg │ │ ├── image7.imageset │ │ │ ├── Contents.json │ │ │ └── valerie-elash-RfoISVdKM4U-unsplash.jpeg │ │ ├── image8.imageset │ │ │ ├── Contents.json │ │ │ └── daniel-monteiro-w8wpFqiMpW8-unsplash.jpeg │ │ └── profile.imageset │ │ │ ├── Contents.json │ │ │ └── GLXL8624.jpeg │ ├── Post │ │ ├── Contents.json │ │ ├── post1.imageset │ │ │ ├── Contents.json │ │ │ └── fotis-fotopoulos-LJ9KY8pIH3E-unsplash.jpeg │ │ ├── post2.imageset │ │ │ ├── Contents.json │ │ │ └── marvin-meyer-SYTO3xs06fU-unsplash.jpeg │ │ ├── post3.imageset │ │ │ ├── Contents.json │ │ │ └── clement-helardot-95YRwf6CNw8-unsplash.jpeg │ │ └── post4.imageset │ │ │ ├── Contents.json │ │ │ └── igor-miske-JVSgcV8_vb4-unsplash.jpeg │ ├── comment.imageset │ │ ├── Contents.json │ │ └── icons8-chat-bubble-50 (1).png │ ├── heart.imageset │ │ ├── Contents.json │ │ └── heart.png │ ├── like-button.imageset │ │ ├── Contents.json │ │ └── like-button-removebg-preview.png │ ├── linkedin-circle.imageset │ │ ├── Contents.json │ │ └── iconfinder_social-linkedin-circle_771370.png │ └── message.imageset │ │ ├── Contents.json │ │ └── icons8-chat-bubble-50.png ├── ContentView.swift ├── LinkedInUIApp.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json └── Project Manager │ ├── Utils │ ├── Constants │ │ └── ColorConstants.swift │ └── HelperViews │ │ ├── BootomSheetView.swift │ │ └── ButtonProvider.swift │ └── Views │ ├── Home │ ├── HomeView.swift │ ├── LinkedinStory.swift │ ├── PostView.swift │ ├── SearchView.swift │ └── StoryProvider.swift │ └── Network │ └── NetworkView.swift ├── README.md └── gif.gif /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/.gitignore -------------------------------------------------------------------------------- /LinkedInUI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LinkedInUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LinkedInUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LinkedInUI/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/.DS_Store -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Add.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Add.imageset/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Add.imageset/Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Add.imageset/Group.png -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Add.imageset/Group@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Add.imageset/Group@2x.png -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Add.imageset/Group@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Add.imageset/Group@3x.png -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/image1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/image1.imageset/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/image1.imageset/valdemars-magone-8ACtYtJ5G-E-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/image1.imageset/valdemars-magone-8ACtYtJ5G-E-unsplash.jpg -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/image10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/image10.imageset/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/image10.imageset/brooke-cagle-wKOKidNT14w-unsplash.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/image10.imageset/brooke-cagle-wKOKidNT14w-unsplash.jpeg -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/image11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/image11.imageset/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/image11.imageset/mubariz-mehdizadeh-Py8F6-hRn5o-unsplash.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/image11.imageset/mubariz-mehdizadeh-Py8F6-hRn5o-unsplash.jpeg -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/image12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/image12.imageset/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/image12.imageset/taylor-grote-UiVe5QvOhao-unsplash.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/image12.imageset/taylor-grote-UiVe5QvOhao-unsplash.jpeg -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/image13.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/image13.imageset/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/image13.imageset/tyler-nix-ZGa9d1a_4tA-unsplash.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/image13.imageset/tyler-nix-ZGa9d1a_4tA-unsplash.jpeg -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/image2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/image2.imageset/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/image2.imageset/anne-peres-plsF6obTgms-unsplash.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/image2.imageset/anne-peres-plsF6obTgms-unsplash.jpeg -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/image3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/image3.imageset/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/image3.imageset/ayo-ogunseinde-sibVwORYqs0-unsplash.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/image3.imageset/ayo-ogunseinde-sibVwORYqs0-unsplash.jpeg -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/image4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/image4.imageset/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/image4.imageset/joshua-rawson-harris-6PROVhY2Yq4-unsplash.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/image4.imageset/joshua-rawson-harris-6PROVhY2Yq4-unsplash.jpeg -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/image5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/image5.imageset/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/image5.imageset/joshua-rondeau-ZnHRNtwXg6Q-unsplash.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/image5.imageset/joshua-rondeau-ZnHRNtwXg6Q-unsplash.jpeg -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/image6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/image6.imageset/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/image6.imageset/ionut-comanici-RDcEWH5hSDE-unsplash.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/image6.imageset/ionut-comanici-RDcEWH5hSDE-unsplash.jpeg -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/image7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/image7.imageset/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/image7.imageset/valerie-elash-RfoISVdKM4U-unsplash.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/image7.imageset/valerie-elash-RfoISVdKM4U-unsplash.jpeg -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/image8.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/image8.imageset/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/image8.imageset/daniel-monteiro-w8wpFqiMpW8-unsplash.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/image8.imageset/daniel-monteiro-w8wpFqiMpW8-unsplash.jpeg -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/profile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/profile.imageset/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Image/profile.imageset/GLXL8624.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Image/profile.imageset/GLXL8624.jpeg -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Post/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Post/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Post/post1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Post/post1.imageset/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Post/post1.imageset/fotis-fotopoulos-LJ9KY8pIH3E-unsplash.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Post/post1.imageset/fotis-fotopoulos-LJ9KY8pIH3E-unsplash.jpeg -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Post/post2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Post/post2.imageset/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Post/post2.imageset/marvin-meyer-SYTO3xs06fU-unsplash.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Post/post2.imageset/marvin-meyer-SYTO3xs06fU-unsplash.jpeg -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Post/post3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Post/post3.imageset/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Post/post3.imageset/clement-helardot-95YRwf6CNw8-unsplash.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Post/post3.imageset/clement-helardot-95YRwf6CNw8-unsplash.jpeg -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Post/post4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Post/post4.imageset/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/Post/post4.imageset/igor-miske-JVSgcV8_vb4-unsplash.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/Post/post4.imageset/igor-miske-JVSgcV8_vb4-unsplash.jpeg -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/comment.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/comment.imageset/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/comment.imageset/icons8-chat-bubble-50 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/comment.imageset/icons8-chat-bubble-50 (1).png -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/heart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/heart.imageset/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/heart.imageset/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/heart.imageset/heart.png -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/like-button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/like-button.imageset/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/like-button.imageset/like-button-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/like-button.imageset/like-button-removebg-preview.png -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/linkedin-circle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/linkedin-circle.imageset/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/linkedin-circle.imageset/iconfinder_social-linkedin-circle_771370.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/linkedin-circle.imageset/iconfinder_social-linkedin-circle_771370.png -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/message.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/message.imageset/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Assets.xcassets/message.imageset/icons8-chat-bubble-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Assets.xcassets/message.imageset/icons8-chat-bubble-50.png -------------------------------------------------------------------------------- /LinkedInUI/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/ContentView.swift -------------------------------------------------------------------------------- /LinkedInUI/LinkedInUIApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/LinkedInUIApp.swift -------------------------------------------------------------------------------- /LinkedInUI/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /LinkedInUI/Project Manager/Utils/Constants/ColorConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Project Manager/Utils/Constants/ColorConstants.swift -------------------------------------------------------------------------------- /LinkedInUI/Project Manager/Utils/HelperViews/BootomSheetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Project Manager/Utils/HelperViews/BootomSheetView.swift -------------------------------------------------------------------------------- /LinkedInUI/Project Manager/Utils/HelperViews/ButtonProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Project Manager/Utils/HelperViews/ButtonProvider.swift -------------------------------------------------------------------------------- /LinkedInUI/Project Manager/Views/Home/HomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Project Manager/Views/Home/HomeView.swift -------------------------------------------------------------------------------- /LinkedInUI/Project Manager/Views/Home/LinkedinStory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Project Manager/Views/Home/LinkedinStory.swift -------------------------------------------------------------------------------- /LinkedInUI/Project Manager/Views/Home/PostView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Project Manager/Views/Home/PostView.swift -------------------------------------------------------------------------------- /LinkedInUI/Project Manager/Views/Home/SearchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Project Manager/Views/Home/SearchView.swift -------------------------------------------------------------------------------- /LinkedInUI/Project Manager/Views/Home/StoryProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Project Manager/Views/Home/StoryProvider.swift -------------------------------------------------------------------------------- /LinkedInUI/Project Manager/Views/Network/NetworkView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/LinkedInUI/Project Manager/Views/Network/NetworkView.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/README.md -------------------------------------------------------------------------------- /gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanGotti/Linkedin-UI-SwiftUI/HEAD/gif.gif --------------------------------------------------------------------------------