├── .DS_Store ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── AddRemoveButton ├── AddRemoveButton.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── arvind.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arvind.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── AddRemoveButton │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── ContentView.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── SceneDelegate.swift ├── Animated-SideMenu ├── Animated-SideMenu.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── arvind.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arvind.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── Animated-SideMenu │ ├── AppDelegate │ ├── AppDelegate.swift │ └── SceneDelegate.swift │ ├── Color │ └── Color.swift │ ├── ContentView │ ├── ContentView.swift │ └── SideMenu.swift │ ├── Info.plist │ ├── MenuButton │ └── MenuButton.swift │ ├── MenuItems │ ├── Abouts.swift │ ├── HomeView.swift │ ├── Orders.swift │ └── Wishlist.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── Resource │ └── Assets.xcassets │ │ ├── AccentColor.colorset │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── images │ │ ├── Contents.json │ │ ├── api.imageset │ │ │ ├── Contents.json │ │ │ └── api-icon-png-4.png │ │ ├── closures.imageset │ │ │ ├── Contents.json │ │ │ └── closure.jpg │ │ ├── closuress.imageset │ │ │ ├── Contents.json │ │ │ └── closuress.svg │ │ ├── delegate.imageset │ │ │ ├── Contents.json │ │ │ └── delegate.png │ │ └── protocol.imageset │ │ │ ├── Contents.json │ │ │ └── protocol.png │ │ └── profile.imageset │ │ ├── Contents.json │ │ └── my-profile.jpg │ └── StoryBoard │ └── Base.lproj │ └── LaunchScreen.storyboard ├── AnimatedDots ├── AnimatedDots.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ ├── arvind.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── mac.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── PRITAL.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ ├── arvind.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── AnimatedDots │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── profile.imageset │ │ ├── Contents.json │ │ └── profilemy.png │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── ContentView.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── SceneDelegate.swift ├── BackToBackAnimatedDot ├── BackToBackAnimatedDot.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── arvind.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arvind.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── BackToBackAnimatedDot │ ├── AnimatedDots.swift │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── profile.imageset │ │ ├── Contents.json │ │ └── profilemy.png │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── ContentView.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── SceneDelegate.swift ├── Card-Payment ├── Card-Payment.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── arvind.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arvind.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── Card-Payment │ ├── AppDelegate │ ├── AppDelegate.swift │ └── SceneDelegate.swift │ ├── Color │ └── Color.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── Resource │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── card-bg.imageset │ │ │ ├── Contents.json │ │ │ └── Screen Shot 2020-12-15 at 9.35.56 AM.png │ │ ├── card-bg2.imageset │ │ │ ├── Contents.json │ │ │ └── —Pngtree—blue credit card for financial_1120038.jpg │ │ ├── card-bg3.imageset │ │ │ ├── Contents.json │ │ │ └── download.jpeg │ │ ├── cartdetails │ │ │ ├── Contents.json │ │ │ ├── amazon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons8-amazon-48 (2).png │ │ │ ├── apple.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons8-apple-logo-50.png │ │ │ ├── flipkart.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── flipkart.png │ │ │ ├── nike.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons8-nike-48.png │ │ │ └── shop.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons8-shop-48 (1).png │ │ ├── sbi.card.imageset │ │ │ ├── Contents.json │ │ │ └── sbi.card-removebg-preview.png │ │ └── visa.imageset │ │ │ ├── Contents.json │ │ │ └── visa.png │ └── Base.lproj │ │ └── LaunchScreen.storyboard │ └── View │ ├── CardDetailView.swift │ ├── CardView.swift │ └── ContentView.swift ├── CharcterAnimation ├── CharcterAnimation-SwiftUI.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ ├── arvind.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── gustavo.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── arvind.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── gustavo.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── CharcterAnimation-SwiftUI │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── ContentView.swift │ ├── GestureAnimation.xcdatamodeld │ └── GestureAnimation.xcdatamodel │ │ └── contents │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── SceneDelegate.swift ├── ChartAnimation ├── ChartAnimation.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── arvind.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arvind.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── ChartAnimation │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── profile.imageset │ │ ├── Contents.json │ │ └── profilemy.png │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── ContentView.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── SceneDelegate.swift ├── CircleRotation ├── CircleRotation.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── arvind.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arvind.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── CircleRotation │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── Color.swift │ ├── ContentView.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── SceneDelegate.swift ├── ColorChanges ├── ColorChanges.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── arvind.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arvind.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── ColorChanges │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── ContentView.swift │ ├── GlobalHelpers.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── SceneDelegate.swift │ ├── SplashShape.swift │ └── SplashView.swift ├── Custom-Toggle ├── .gitattributes ├── swiftui-toggle.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── arvind.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arvind.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── swiftui-toggle │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── volume.imageset │ │ │ ├── Contents.json │ │ │ └── volume.png │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── ContentView.swift │ ├── Info.plist │ ├── MainPageView.swift │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── SceneDelegate.swift │ └── StyleKitName.swift └── toggle.gif ├── Insta-template ├── Insta-template.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── arvind.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arvind.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── Insta-template │ ├── AppDelegate │ ├── AppDelegate.swift │ └── SceneDelegate.swift │ ├── ButtonProvider │ └── ButtonProvider.swift │ ├── Color │ └── Color.swift │ ├── ContentView │ └── ContentView.swift │ ├── HomeView │ └── HomeView.swift │ ├── Info.plist │ ├── InstaStory │ ├── InstaStory.swift │ └── StoryProvider.swift │ ├── PostCell │ └── PostCell.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── Resource │ └── Assets.xcassets │ │ ├── AccentColor.colorset │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Images │ │ ├── Add.imageset │ │ │ ├── Contents.json │ │ │ ├── Group.png │ │ │ ├── Group@2x.png │ │ │ └── Group@3x.png │ │ ├── Contents.json │ │ ├── Instagram.imageset │ │ │ ├── Contents.json │ │ │ ├── Instagram Logo.png │ │ │ ├── Instagram Logo@2x.png │ │ │ └── Instagram Logo@3x.png │ │ ├── Story │ │ │ ├── Contents.json │ │ │ └── story-border-icon.imageset │ │ │ │ ├── Combined Shape.png │ │ │ │ ├── Combined Shape@2x.png │ │ │ │ ├── Combined Shape@3x.png │ │ │ │ └── Contents.json │ │ ├── message.imageset │ │ │ ├── Contents.json │ │ │ ├── send.png │ │ │ ├── send@2x.png │ │ │ └── send@3x.png │ │ ├── my-profile-icon.imageset │ │ │ ├── Contents.json │ │ │ └── my-profile.jpg │ │ └── profilemy.imageset │ │ │ ├── Contents.json │ │ │ └── profilemy.png │ │ ├── Post │ │ ├── Contents.json │ │ ├── comment-icon.imageset │ │ │ ├── Comment.png │ │ │ ├── Comment@2x.png │ │ │ ├── Comment@3x.png │ │ │ └── Contents.json │ │ ├── like-fill.imageset │ │ │ ├── Contents.json │ │ │ └── imageedit_4_9681815342.png │ │ ├── like-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── Like.png │ │ │ ├── Like@2x.png │ │ │ └── Like@3x.png │ │ ├── more-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── More.png │ │ │ ├── More@2x.png │ │ │ └── More@3x.png │ │ ├── save-icon.imageset │ │ │ ├── Collect.png │ │ │ ├── Collect@2x.png │ │ │ ├── Collect@3x.png │ │ │ └── Contents.json │ │ └── send-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── Send.png │ │ │ ├── Send@2x.png │ │ │ └── Send@3x.png │ │ ├── Tabbar │ │ ├── Contents.json │ │ ├── activity.imageset │ │ │ ├── Activity.png │ │ │ └── Contents.json │ │ ├── home.imageset │ │ │ ├── Contents.json │ │ │ └── Home2.png │ │ ├── photo.imageset │ │ │ ├── Contents.json │ │ │ └── Photo.png │ │ ├── profile.imageset │ │ │ ├── Contents.json │ │ │ └── Profile.png │ │ └── search.imageset │ │ │ ├── Contents.json │ │ │ └── Search.png │ │ └── postImages │ │ ├── Contents.json │ │ ├── image1.imageset │ │ ├── Contents.json │ │ └── valdemars-magone-8ACtYtJ5G-E-unsplash.jpg │ │ ├── image2.imageset │ │ ├── Contents.json │ │ └── Cute-Girl-Profile-pictures-For-Facebook-2.jpg │ │ ├── image3.imageset │ │ ├── Contents.json │ │ └── image.jpeg │ │ ├── image4.imageset │ │ ├── Contents.json │ │ └── images (1).jpeg │ │ └── image5.imageset │ │ ├── Contents.json │ │ └── images.jpeg │ └── Storyboard │ └── Base.lproj │ └── LaunchScreen.storyboard ├── InstagramLodingAnimation ├── InstagramLoadingAnimation.gif ├── InstagramLodingAnimation.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ ├── amosgyamfi.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── arvind.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── LodingAnimation.xcscheme │ └── xcuserdata │ │ ├── amosgyamfi.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── arvind.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── InstagramLodingAnimation │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── insta.imageset │ │ ├── 854129_round_512x512.png │ │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── ContentView.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── SceneDelegate.swift ├── LICENSE ├── NikeAppUI ├── NikeAppUI.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── arvind.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arvind.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── NikeAppUI │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── 1.imageset │ │ ├── Contents.json │ │ └── revolt-164_6wVEHfI-unsplash-removebg-preview.png │ ├── 2.imageset │ │ ├── Contents.json │ │ └── nike-removebg-preview-removebg-preview.png │ ├── 3.imageset │ │ ├── Contents.json │ │ └── shoe-1324431_1920-removebg-preview.png │ ├── 4.imageset │ │ ├── 4-removebg-preview.png │ │ └── Contents.json │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Color │ │ ├── Contents.json │ │ ├── bg.colorset │ │ │ └── Contents.json │ │ └── red.colorset │ │ │ └── Contents.json │ ├── Contents.json │ ├── black.imageset │ │ ├── Contents.json │ │ └── black.png │ ├── blue.imageset │ │ ├── Contents.json │ │ └── blue.png │ ├── nike.imageset │ │ ├── Contents.json │ │ └── nike.png │ └── silver.imageset │ │ ├── Contents.json │ │ └── silver.png │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── ContentView.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── SceneDelegate.swift │ └── ShoesSize.swift ├── README.md ├── RingAnimation ├── RingAnimation.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── arvind.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arvind.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── RingAnimation │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── ContentView.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── SceneDelegate.swift ├── SideMenuSwiftUI ├── .DS_Store ├── SideMenu-SwiftUI.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── arvind.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arvind.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── SideMenu-SwiftUI │ ├── .DS_Store │ ├── AppDelegate │ ├── AppDelegate.swift │ └── SceneDelegate.swift │ ├── ContentView │ ├── ContentView.swift │ └── SideMenu.swift │ ├── Extensions │ ├── Color+Extensions.swift │ └── UIImage+Extensions.swift │ ├── Info.plist │ ├── MenuButton │ └── MenuButton.swift │ ├── MenuItems │ ├── Abouts.swift │ ├── HomeView.swift │ ├── Orders.swift │ └── Wishlist.swift │ ├── Models │ ├── MenuConfiguration.swift │ ├── MenuItem.swift │ ├── MenuItemProtocol.swift │ ├── MenuState.swift │ ├── Product.swift │ └── ProductProtocol.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── Resource │ └── Assets.xcassets │ │ ├── AccentColor.colorset │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Images │ │ ├── Contents.json │ │ ├── bag-icon.imageset │ │ │ ├── Contents.json │ │ │ └── bag-icon.png │ │ ├── contact-icon.imageset │ │ │ ├── Contents.json │ │ │ └── contact-icons.png │ │ ├── home-icon.imageset │ │ │ ├── Contents.json │ │ │ └── home.png │ │ ├── logout.imageset │ │ │ ├── Contents.json │ │ │ └── logout.png │ │ ├── menu.imageset │ │ │ ├── Contents.json │ │ │ └── menu.png │ │ ├── order-icon.imageset │ │ │ ├── Contents.json │ │ │ └── order-icon.png │ │ ├── profile.imageset │ │ │ ├── Contents.json │ │ │ └── profile.jpeg │ │ └── wishlist.imageset │ │ │ ├── Contents.json │ │ │ └── wishlist.png │ │ └── shoes │ │ ├── 4.imageset │ │ ├── 4.jpg │ │ └── Contents.json │ │ ├── 5.imageset │ │ ├── 2AT685J.jpg │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── nike-shoes-four.imageset │ │ ├── Contents.json │ │ └── nike-removebg-preview.jpg │ │ ├── nike-shoes-one.imageset │ │ ├── Contents.json │ │ └── alexander-rotker-l8p1aWZqHvE-unsplash.jpg │ │ ├── nike-shoes-three.imageset │ │ ├── Contents.json │ │ └── shoe-1324431_1920.jpg │ │ └── nike-shoes-two.imageset │ │ ├── Contents.json │ │ └── revolt-164_6wVEHfI-unsplash.jpg │ ├── Services │ ├── ProductRepository.swift │ └── ProductRepositoryProtocol.swift │ ├── StoryBoard │ └── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Utils │ ├── ProductHelpers.swift │ └── SafeAreaHelpers.swift │ └── Views │ ├── HamburgerMenu.swift │ ├── MainContent.swift │ ├── MenuSidebar.swift │ ├── NavigationTitle.swift │ ├── ProductImage.swift │ ├── ProductInfo.swift │ ├── ProductRow.swift │ ├── Separator.swift │ └── UserProfile.swift ├── SlideMenuIcons ├── Menu-Icons.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── arvind.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arvind.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── Menu-Icons │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── ContentView.swift │ ├── Info.plist │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ └── SceneDelegate.swift └── sideMenuIcons.gif ├── Source ├── insta.png ├── instagram.svg ├── linkedin.png ├── linkedin.svg ├── paypal.png ├── telegram.svg └── twitter.svg ├── SwappingBall ├── SwappingBall.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── arvind.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arvind.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── SwappingBall │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── profile.imageset │ │ │ ├── Contents.json │ │ │ └── profilemy.png │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── ContentView.swift │ ├── Info.plist │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ └── SceneDelegate.swift └── ball-animation.gif ├── ThreeDotRotation ├── ThreeDotRotation.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── arvind.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arvind.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── ThreeDotRotation │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── ContentView.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── SceneDelegate.swift ├── animated-tabbar ├── animated-tabbar.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── arvind.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arvind.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── animated-tabbar │ ├── AppDelegate │ ├── AppDelegate.swift │ └── SceneDelegate.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── Resource │ └── Assets.xcassets │ │ ├── AccentColor.colorset │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── camera.imageset │ │ ├── Contents.json │ │ └── camera-7.png │ │ ├── dumbbell.imageset │ │ ├── Contents.json │ │ └── dumbbell-7.png │ │ ├── heart.imageset │ │ ├── Contents.json │ │ └── heart-7.png │ │ └── home.imageset │ │ ├── Contents.json │ │ └── home.png │ ├── Storyboard │ └── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── TabbarButton │ └── TabbarButton.swift │ ├── TabbarShape │ └── TabbarShape.swift │ └── View │ └── ContentView.swift ├── facebook-template ├── facebook-template.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── arvind.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arvind.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── facebook-template │ ├── AppDelegate │ ├── AppDelegate.swift │ └── SceneDelegate.swift │ ├── Color │ └── Color.swift │ ├── Info.plist │ ├── NaviagtionBar │ └── NavigationBar.swift │ ├── NewPostView.swift │ ├── PostView.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── Resource │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Images │ │ │ ├── 1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── luis-vidal-LplDKNWzFfA-unsplash.jpg │ │ │ ├── 2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── yannick-menard-Dmvnnt-nfkA-unsplash.jpg │ │ │ ├── 3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── david-emrich-F5RuqvCbCEY-unsplash.jpg │ │ │ ├── 4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pawel-nolbert-xe-ss5Tg2mo-unsplash.jpg │ │ │ ├── 5.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mohamed-ahsan-YxfYBKMjYqk-unsplash.jpg │ │ │ └── Contents.json │ │ ├── Navigation │ │ │ ├── Contents.json │ │ │ ├── facebook-messenger.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icons8-facebook-messenger-30.png │ │ │ │ └── icons8-facebook-messenger-60.png │ │ │ ├── group-icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons8-user-account-50.png │ │ │ ├── notification-icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icons8-notification-24.png │ │ │ │ └── notification-icon.png │ │ │ └── search-icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icons8-search-24.png │ │ │ │ └── icons8-search-48.png │ │ ├── New-icos │ │ │ ├── Add.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Group.png │ │ │ │ ├── Group@2x.png │ │ │ │ └── Group@3x.png │ │ │ ├── Contents.json │ │ │ ├── Like.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── like.png │ │ │ ├── albums.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons8-albums-50.png │ │ │ ├── comment.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── comment.png │ │ │ ├── facebook-text.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── face.svg │ │ │ ├── messenger-30.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons8-facebook-messenger-30.png │ │ │ ├── profile.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── my-profile.jpg │ │ │ ├── search-64.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons8-search-24.png │ │ │ ├── share.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── share.png │ │ │ └── video-call.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons8-video-call-50.png │ │ ├── Reaction │ │ │ ├── Contents.json │ │ │ ├── angry.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── angry,anger,emoji,facebook reaction,reaction,face,expression,1991061.png │ │ │ ├── care.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── facebook care emoji,care,facebook reaction,emoji,support,facebook care reaction,face,emoticon,1991058.png │ │ │ ├── haha.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── haha,emoji,happy,facebook,social-media,expression,facebook reaction,1991060.png │ │ │ ├── like.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── like,love,favorite,thumbs-up,facebook reaction,1991059.png │ │ │ ├── love.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── love,heart,emoji,facebook reaction,reaction,1991064.png │ │ │ ├── sad.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sad,unhappy,emoji,facebook reaction,reaction,1991063.png │ │ │ └── wow.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── wow,face,emotion,expression,surprise,emoji,facebook reaction,1991062.png │ │ └── postImages │ │ │ ├── Contents.json │ │ │ ├── image1.imageset │ │ │ ├── Contents.json │ │ │ └── valdemars-magone-8ACtYtJ5G-E-unsplash.jpg │ │ │ ├── image2.imageset │ │ │ ├── Contents.json │ │ │ └── Cute-Girl-Profile-pictures-For-Facebook-2.jpg │ │ │ ├── image3.imageset │ │ │ ├── Contents.json │ │ │ └── image.jpeg │ │ │ ├── image4.imageset │ │ │ ├── Contents.json │ │ │ └── images (1).jpeg │ │ │ └── image5.imageset │ │ │ ├── Contents.json │ │ │ └── images.jpeg │ └── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── StoryProvider.swift │ ├── StoryView.swift │ └── View │ └── ContentView.swift ├── linkedin-template ├── linkedin-template.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── arvind.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arvind.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── linkedin-template │ ├── AppDelegate │ ├── AppDelegate.swift │ └── SceneDelegate.swift │ ├── ButtonProvider │ └── ButtonProvider.swift │ ├── Color │ └── Color.swift │ ├── ContentView │ └── ContentView.swift │ ├── HomeView │ └── HomeView.swift │ ├── Info.plist │ ├── Post │ └── PostView.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── Resource │ └── 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 │ │ ├── image2.imageset │ │ │ ├── Contents.json │ │ │ └── Cute-Girl-Profile-pictures-For-Facebook-2.jpg │ │ ├── image3.imageset │ │ │ ├── Contents.json │ │ │ └── image.jpeg │ │ ├── image4.imageset │ │ │ ├── Contents.json │ │ │ └── images (1).jpeg │ │ ├── image5.imageset │ │ │ ├── Contents.json │ │ │ └── images.jpeg │ │ └── profile.imageset │ │ │ ├── Contents.json │ │ │ └── my-profile.jpg │ │ ├── Post │ │ ├── Contents.json │ │ ├── post1.imageset │ │ │ ├── Contents.json │ │ │ └── dmitry-chernyshov-mP7aPSUm7aE-unsplash.jpg │ │ ├── post2.imageset │ │ │ ├── Contents.json │ │ │ └── emile-perron-xrVDYZRGdw4-unsplash.jpg │ │ ├── post3.imageset │ │ │ ├── Contents.json │ │ │ └── michael-dziedzic-qDG7XKJLKbs-unsplash.jpg │ │ └── post4.imageset │ │ │ ├── Contents.json │ │ │ └── markus-spiske-1nInzk7c0hg-unsplash.jpg │ │ ├── comment.imageset │ │ ├── Contents.json │ │ └── icons8-chat-bubble-50 (1).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 │ ├── Search │ └── SearchView.swift │ ├── Story │ ├── LinkedinStory.swift │ └── StoryProvider.swift │ └── Storyboard │ └── Base.lproj │ └── LaunchScreen.storyboard └── tinder-template ├── .DS_Store ├── README.md ├── tinder-template.gif ├── tinder-template.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── arvind.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── arvind.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist └── tinder-template ├── AppDelegate ├── AppDelegate.swift └── SceneDelegate.swift ├── Components ├── ButtonComponents.swift ├── ImageComponents.swift └── TextComponents.swift ├── Config └── AppConfig.swift ├── ContentView └── ContentView.swift ├── Info.plist ├── Models └── ProfileModel.swift ├── Preview Content └── Preview Assets.xcassets │ └── Contents.json ├── Resource └── Assets.xcassets │ ├── AccentColor.colorset │ └── Contents.json │ ├── AppIcon.appiconset │ └── Contents.json │ ├── Contents.json │ ├── dismiss_circle.imageset │ ├── Contents.json │ └── dismiss_circle@2x.png │ ├── image │ ├── Contents.json │ ├── image1.imageset │ │ ├── Contents.json │ │ └── fezbot2000-ByZMSgCuszw-unsplash.jpg │ ├── image2.imageset │ │ ├── Contents.json │ │ └── jassir-jonis-xQ2a8aAPbYc-unsplash.jpg │ ├── image3.imageset │ │ ├── Contents.json │ │ └── michael-dam-mEZ3PoFGs_k-unsplash.jpg │ ├── image4.imageset │ │ ├── Contents.json │ │ └── atikh-bana-_KaMTEmJnxY-unsplash.jpg │ └── profile.imageset │ │ ├── Contents.json │ │ └── my-profile.jpg │ ├── like_circle.imageset │ ├── Contents.json │ └── like_circle@2x.png │ ├── rewind_circle.imageset │ ├── Contents.json │ └── refresh_circle@2x.png │ └── super_like_circle.imageset │ ├── Contents.json │ └── super_like_circle@2x.png ├── Ripple └── Ripple.swift ├── Services ├── ActionManager.swift ├── DependencyContainer.swift └── GestureManager.swift ├── StoryBoard └── Base.lproj │ └── LaunchScreen.storyboard ├── ViewModels ├── MainViewModel.swift └── UserProfileViewModel.swift └── Views ├── MainView.swift └── UserProfileView.swift /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/.DS_Store -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Custom issue template 3 | about: Describe this issue template's purpose here. 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | -------------------------------------------------------------------------------- /AddRemoveButton/AddRemoveButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /AddRemoveButton/AddRemoveButton.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AddRemoveButton/AddRemoveButton.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/AddRemoveButton/AddRemoveButton.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /AddRemoveButton/AddRemoveButton.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | AddRemoveButton.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /AddRemoveButton/AddRemoveButton/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /AddRemoveButton/AddRemoveButton/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /AddRemoveButton/AddRemoveButton/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Animated-SideMenu/Animated-SideMenu.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/ContentView/ContentView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ContentView.swift 3 | // Animated-SideMenu 4 | // 5 | // Created by Arvind on 16/12/20. 6 | // 7 | 8 | import SwiftUI 9 | 10 | struct ContentView: View { 11 | var body: some View { 12 | SideMenu() 13 | } 14 | } 15 | 16 | struct ContentView_Previews: PreviewProvider { 17 | static var previews: some View { 18 | ContentView() 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/MenuItems/Abouts.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Abouts.swift 3 | // Animated-SideMenu 4 | // 5 | // Created by Arvind on 16/12/20. 6 | // 7 | 8 | import SwiftUI 9 | 10 | struct Abouts: View { 11 | var body: some View { 12 | VStack { 13 | Color.white.ignoresSafeArea() 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/MenuItems/Orders.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Orders.swift 3 | // Animated-SideMenu 4 | // 5 | // Created by Arvind on 16/12/20. 6 | // 7 | 8 | import SwiftUI 9 | 10 | struct Orders: View { 11 | 12 | var body: some View { 13 | VStack { 14 | Color.white.ignoresSafeArea() 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/MenuItems/Wishlist.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Wishlist.swift 3 | // Animated-SideMenu 4 | // 5 | // Created by Arvind on 16/12/20. 6 | // 7 | 8 | import SwiftUI 9 | 10 | struct Wishlist: View { 11 | var body: some View { 12 | VStack { 13 | Color.white.ignoresSafeArea() 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/api.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "api-icon-png-4.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/api.imageset/api-icon-png-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/api.imageset/api-icon-png-4.png -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/closures.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "closure.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/closures.imageset/closure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/closures.imageset/closure.jpg -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/closuress.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "closuress.svg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/delegate.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "delegate.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/delegate.imageset/delegate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/delegate.imageset/delegate.png -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/protocol.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "protocol.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/protocol.imageset/protocol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/protocol.imageset/protocol.png -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/profile.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "my-profile.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/profile.imageset/my-profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/profile.imageset/my-profile.jpg -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/AnimatedDots/AnimatedDots.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots.xcodeproj/project.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/AnimatedDots/AnimatedDots.xcodeproj/project.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots.xcodeproj/xcuserdata/PRITAL.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | loadingDotAnimation.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | loadingDotAnimation.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots/Assets.xcassets/profile.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "profilemy.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots/Assets.xcassets/profile.imageset/profilemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/AnimatedDots/AnimatedDots/Assets.xcassets/profile.imageset/profilemy.png -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /BackToBackAnimatedDot/BackToBackAnimatedDot.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /BackToBackAnimatedDot/BackToBackAnimatedDot.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /BackToBackAnimatedDot/BackToBackAnimatedDot.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/BackToBackAnimatedDot/BackToBackAnimatedDot.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /BackToBackAnimatedDot/BackToBackAnimatedDot.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /BackToBackAnimatedDot/BackToBackAnimatedDot/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /BackToBackAnimatedDot/BackToBackAnimatedDot/Assets.xcassets/profile.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "profilemy.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /BackToBackAnimatedDot/BackToBackAnimatedDot/Assets.xcassets/profile.imageset/profilemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/BackToBackAnimatedDot/BackToBackAnimatedDot/Assets.xcassets/profile.imageset/profilemy.png -------------------------------------------------------------------------------- /BackToBackAnimatedDot/BackToBackAnimatedDot/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Card-Payment/Card-Payment.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Card-Payment/Card-Payment.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Card-Payment/Card-Payment.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Card-Payment/Card-Payment.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Card-Payment/Card-Payment.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /Card-Payment/Card-Payment.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | Card-Payment.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/card-bg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Screen Shot 2020-12-15 at 9.35.56 AM.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/card-bg.imageset/Screen Shot 2020-12-15 at 9.35.56 AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Card-Payment/Card-Payment/Resource/Assets.xcassets/card-bg.imageset/Screen Shot 2020-12-15 at 9.35.56 AM.png -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/card-bg2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "—Pngtree—blue credit card for financial_1120038.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/card-bg2.imageset/—Pngtree—blue credit card for financial_1120038.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Card-Payment/Card-Payment/Resource/Assets.xcassets/card-bg2.imageset/—Pngtree—blue credit card for financial_1120038.jpg -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/card-bg3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "download.jpeg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/card-bg3.imageset/download.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Card-Payment/Card-Payment/Resource/Assets.xcassets/card-bg3.imageset/download.jpeg -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/amazon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "icons8-amazon-48 (2).png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/amazon.imageset/icons8-amazon-48 (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/amazon.imageset/icons8-amazon-48 (2).png -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/apple.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "icons8-apple-logo-50.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/apple.imageset/icons8-apple-logo-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/apple.imageset/icons8-apple-logo-50.png -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/flipkart.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "flipkart.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/flipkart.imageset/flipkart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/flipkart.imageset/flipkart.png -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/nike.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "icons8-nike-48.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/nike.imageset/icons8-nike-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/nike.imageset/icons8-nike-48.png -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/shop.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "icons8-shop-48 (1).png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/shop.imageset/icons8-shop-48 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/shop.imageset/icons8-shop-48 (1).png -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/sbi.card.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "sbi.card-removebg-preview.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/sbi.card.imageset/sbi.card-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Card-Payment/Card-Payment/Resource/Assets.xcassets/sbi.card.imageset/sbi.card-removebg-preview.png -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/visa.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "visa.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/visa.imageset/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Card-Payment/Card-Payment/Resource/Assets.xcassets/visa.imageset/visa.png -------------------------------------------------------------------------------- /CharcterAnimation/CharcterAnimation-SwiftUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CharcterAnimation/CharcterAnimation-SwiftUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CharcterAnimation/CharcterAnimation-SwiftUI.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/CharcterAnimation/CharcterAnimation-SwiftUI.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CharcterAnimation/CharcterAnimation-SwiftUI.xcodeproj/project.xcworkspace/xcuserdata/gustavo.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/CharcterAnimation/CharcterAnimation-SwiftUI.xcodeproj/project.xcworkspace/xcuserdata/gustavo.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CharcterAnimation/CharcterAnimation-SwiftUI.xcodeproj/xcuserdata/gustavo.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | GestureAnimation.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /CharcterAnimation/CharcterAnimation-SwiftUI/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /CharcterAnimation/CharcterAnimation-SwiftUI/GestureAnimation.xcdatamodeld/GestureAnimation.xcdatamodel/contents: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /CharcterAnimation/CharcterAnimation-SwiftUI/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/ChartAnimation/ChartAnimation.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | ChartAnimation.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation/Assets.xcassets/profile.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "profilemy.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation/Assets.xcassets/profile.imageset/profilemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/ChartAnimation/ChartAnimation/Assets.xcassets/profile.imageset/profilemy.png -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CircleRotation/CircleRotation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CircleRotation/CircleRotation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CircleRotation/CircleRotation.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/CircleRotation/CircleRotation.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CircleRotation/CircleRotation.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | CircleRotation.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /CircleRotation/CircleRotation/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /CircleRotation/CircleRotation/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CircleRotation/CircleRotation/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ColorChanges/ColorChanges.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ColorChanges/ColorChanges.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ColorChanges/ColorChanges.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/ColorChanges/ColorChanges.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ColorChanges/ColorChanges.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /ColorChanges/ColorChanges.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | ColorChanges.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /ColorChanges/ColorChanges/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ColorChanges/ColorChanges/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ColorChanges/ColorChanges/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Custom-Toggle/.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Custom-Toggle/swiftui-toggle.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle/Assets.xcassets/volume.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "volume.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle/Assets.xcassets/volume.imageset/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Custom-Toggle/swiftui-toggle/Assets.xcassets/volume.imageset/volume.png -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle/MainPageView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // MainPageView.swift 3 | // swiftui-demo 4 | // 5 | // Created by Arvind on 09/08/20. 6 | // Copyright © 2020 Arvind. All rights reserved. 7 | // 8 | 9 | import SwiftUI 10 | 11 | struct MainPageView: View { 12 | var body: some View { 13 | Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) 14 | } 15 | } 16 | 17 | struct MainPageView_Previews: PreviewProvider { 18 | static var previews: some View { 19 | MainPageView() 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Custom-Toggle/toggle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Custom-Toggle/toggle.gif -------------------------------------------------------------------------------- /Insta-template/Insta-template.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Insta-template/Insta-template.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Insta-template/Insta-template.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Insta-template/Insta-template.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /Insta-template/Insta-template.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | Insta-template.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/Add.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Group.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Group@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Group@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/Add.imageset/Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Images/Add.imageset/Group.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/Add.imageset/Group@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Images/Add.imageset/Group@2x.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/Add.imageset/Group@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Images/Add.imageset/Group@3x.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/Instagram.imageset/Instagram Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Images/Instagram.imageset/Instagram Logo.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/Instagram.imageset/Instagram Logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Images/Instagram.imageset/Instagram Logo@2x.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/Instagram.imageset/Instagram Logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Images/Instagram.imageset/Instagram Logo@3x.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/Story/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/Story/story-border-icon.imageset/Combined Shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Images/Story/story-border-icon.imageset/Combined Shape.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/Story/story-border-icon.imageset/Combined Shape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Images/Story/story-border-icon.imageset/Combined Shape@2x.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/Story/story-border-icon.imageset/Combined Shape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Images/Story/story-border-icon.imageset/Combined Shape@3x.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/message.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "send.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "send@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "send@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/message.imageset/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Images/message.imageset/send.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/message.imageset/send@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Images/message.imageset/send@2x.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/message.imageset/send@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Images/message.imageset/send@3x.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/my-profile-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "my-profile.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/my-profile-icon.imageset/my-profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Images/my-profile-icon.imageset/my-profile.jpg -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/profilemy.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "profilemy.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/profilemy.imageset/profilemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Images/profilemy.imageset/profilemy.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/comment-icon.imageset/Comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Post/comment-icon.imageset/Comment.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/comment-icon.imageset/Comment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Post/comment-icon.imageset/Comment@2x.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/comment-icon.imageset/Comment@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Post/comment-icon.imageset/Comment@3x.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/comment-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Comment.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Comment@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Comment@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/like-fill.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "filename" : "imageedit_4_9681815342.png", 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/like-fill.imageset/imageedit_4_9681815342.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Post/like-fill.imageset/imageedit_4_9681815342.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/like-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Like.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Like@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Like@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/like-icon.imageset/Like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Post/like-icon.imageset/Like.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/like-icon.imageset/Like@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Post/like-icon.imageset/Like@2x.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/like-icon.imageset/Like@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Post/like-icon.imageset/Like@3x.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/more-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "More.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "More@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "More@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/more-icon.imageset/More.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Post/more-icon.imageset/More.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/more-icon.imageset/More@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Post/more-icon.imageset/More@2x.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/more-icon.imageset/More@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Post/more-icon.imageset/More@3x.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/save-icon.imageset/Collect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Post/save-icon.imageset/Collect.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/save-icon.imageset/Collect@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Post/save-icon.imageset/Collect@2x.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/save-icon.imageset/Collect@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Post/save-icon.imageset/Collect@3x.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/save-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Collect.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Collect@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Collect@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/send-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Send.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Send@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Send@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/send-icon.imageset/Send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Post/send-icon.imageset/Send.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/send-icon.imageset/Send@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Post/send-icon.imageset/Send@2x.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/send-icon.imageset/Send@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Post/send-icon.imageset/Send@3x.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/activity.imageset/Activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/activity.imageset/Activity.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/activity.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Activity.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/home.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Home2.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/home.imageset/Home2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/home.imageset/Home2.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/photo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Photo.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/photo.imageset/Photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/photo.imageset/Photo.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/profile.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Profile.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/profile.imageset/Profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/profile.imageset/Profile.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/search.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Search.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/search.imageset/Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/search.imageset/Search.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/postImages/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "valdemars-magone-8ACtYtJ5G-E-unsplash.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image1.imageset/valdemars-magone-8ACtYtJ5G-E-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image1.imageset/valdemars-magone-8ACtYtJ5G-E-unsplash.jpg -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "filename" : "Cute-Girl-Profile-pictures-For-Facebook-2.jpg", 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image2.imageset/Cute-Girl-Profile-pictures-For-Facebook-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image2.imageset/Cute-Girl-Profile-pictures-For-Facebook-2.jpg -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "filename" : "image.jpeg", 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image3.imageset/image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image3.imageset/image.jpeg -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "filename" : "images (1).jpeg", 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image4.imageset/images (1).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image4.imageset/images (1).jpeg -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "filename" : "images.jpeg", 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image5.imageset/images.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image5.imageset/images.jpeg -------------------------------------------------------------------------------- /InstagramLodingAnimation/InstagramLoadingAnimation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/InstagramLodingAnimation/InstagramLoadingAnimation.gif -------------------------------------------------------------------------------- /InstagramLodingAnimation/InstagramLodingAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /InstagramLodingAnimation/InstagramLodingAnimation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /InstagramLodingAnimation/InstagramLodingAnimation.xcodeproj/project.xcworkspace/xcuserdata/amosgyamfi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/InstagramLodingAnimation/InstagramLodingAnimation.xcodeproj/project.xcworkspace/xcuserdata/amosgyamfi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /InstagramLodingAnimation/InstagramLodingAnimation.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/InstagramLodingAnimation/InstagramLodingAnimation.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /InstagramLodingAnimation/InstagramLodingAnimation.xcodeproj/xcuserdata/amosgyamfi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | content_loading.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /InstagramLodingAnimation/InstagramLodingAnimation/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /InstagramLodingAnimation/InstagramLodingAnimation/Assets.xcassets/insta.imageset/854129_round_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/InstagramLodingAnimation/InstagramLodingAnimation/Assets.xcassets/insta.imageset/854129_round_512x512.png -------------------------------------------------------------------------------- /InstagramLodingAnimation/InstagramLodingAnimation/Assets.xcassets/insta.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "854129_round_512x512.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /InstagramLodingAnimation/InstagramLodingAnimation/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/NikeAppUI/NikeAppUI.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | NikeAppUI.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "revolt-164_6wVEHfI-unsplash-removebg-preview.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/1.imageset/revolt-164_6wVEHfI-unsplash-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/NikeAppUI/NikeAppUI/Assets.xcassets/1.imageset/revolt-164_6wVEHfI-unsplash-removebg-preview.png -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "nike-removebg-preview-removebg-preview.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/2.imageset/nike-removebg-preview-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/NikeAppUI/NikeAppUI/Assets.xcassets/2.imageset/nike-removebg-preview-removebg-preview.png -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "shoe-1324431_1920-removebg-preview.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/3.imageset/shoe-1324431_1920-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/NikeAppUI/NikeAppUI/Assets.xcassets/3.imageset/shoe-1324431_1920-removebg-preview.png -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/4.imageset/4-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/NikeAppUI/NikeAppUI/Assets.xcassets/4.imageset/4-removebg-preview.png -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "4-removebg-preview.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/Color/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/black.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "black.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/black.imageset/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/NikeAppUI/NikeAppUI/Assets.xcassets/black.imageset/black.png -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/blue.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "blue.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/blue.imageset/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/NikeAppUI/NikeAppUI/Assets.xcassets/blue.imageset/blue.png -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/nike.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "nike.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/nike.imageset/nike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/NikeAppUI/NikeAppUI/Assets.xcassets/nike.imageset/nike.png -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/silver.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "silver.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/silver.imageset/silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/NikeAppUI/NikeAppUI/Assets.xcassets/silver.imageset/silver.png -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /RingAnimation/RingAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /RingAnimation/RingAnimation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /RingAnimation/RingAnimation.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/RingAnimation/RingAnimation.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /RingAnimation/RingAnimation/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /RingAnimation/RingAnimation/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /RingAnimation/RingAnimation/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/SideMenuSwiftUI/.DS_Store -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/SideMenuSwiftUI/SideMenu-SwiftUI.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | SideMenu-SwiftUI.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/SideMenuSwiftUI/SideMenu-SwiftUI/.DS_Store -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/ContentView/ContentView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ContentView.swift 3 | // SideMenu-SwiftUI 4 | // 5 | // Created by Arvind on 23/11/20. 6 | // 7 | 8 | import SwiftUI 9 | 10 | struct ContentView: View { 11 | var body: some View { 12 | SideMenu() 13 | } 14 | } 15 | 16 | struct ContentView_Previews: PreviewProvider { 17 | static var previews: some View { 18 | ContentView() 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/MenuItems/Abouts.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Abouts.swift 3 | // SideMenu-SwiftUI 4 | // 5 | // Created by Arvind on 23/11/20. 6 | // 7 | 8 | import SwiftUI 9 | 10 | struct Abouts: View { 11 | var body: some View { 12 | Color.getColor3() 13 | .ignoresSafeArea(.all) 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/MenuItems/Orders.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Orders.swift 3 | // SideMenu-SwiftUI 4 | // 5 | // Created by Arvind on 23/11/20. 6 | // 7 | 8 | import SwiftUI 9 | 10 | struct Orders: View { 11 | 12 | var body: some View { 13 | Color.getColor1() 14 | .ignoresSafeArea(.all) 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/MenuItems/Wishlist.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Wishlist.swift 3 | // SideMenu-SwiftUI 4 | // 5 | // Created by Arvind on 23/11/20. 6 | // 7 | 8 | import SwiftUI 9 | 10 | struct Wishlist: View { 11 | var body: some View { 12 | Color.getColor2() 13 | .ignoresSafeArea(.all) 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Models/Product.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Product.swift 3 | // SideMenu-SwiftUI 4 | // 5 | // Created by Arvind on 23/11/20. 6 | // 7 | 8 | import SwiftUI 9 | 10 | // MARK: - Product Model 11 | struct Product: ProductProtocol, Identifiable { 12 | let id = UUID() 13 | let imageName: String 14 | let productName: String 15 | let productDescription: String 16 | let price: String 17 | } 18 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Models/ProductProtocol.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ProductProtocol.swift 3 | // SideMenu-SwiftUI 4 | // 5 | // Created by Arvind on 23/11/20. 6 | // 7 | 8 | import SwiftUI 9 | 10 | // MARK: - Product Protocol (Interface Segregation) 11 | protocol ProductProtocol { 12 | var id: UUID { get } 13 | var imageName: String { get } 14 | var productName: String { get } 15 | var productDescription: String { get } 16 | var price: String { get } 17 | } 18 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/bag-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "filename" : "bag-icon.png", 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/bag-icon.imageset/bag-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/bag-icon.imageset/bag-icon.png -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/contact-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "contact-icons.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/contact-icon.imageset/contact-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/contact-icon.imageset/contact-icons.png -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/home-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "home.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/home-icon.imageset/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/home-icon.imageset/home.png -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/logout.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "logout.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/logout.imageset/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/logout.imageset/logout.png -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/menu.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "menu.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/menu.imageset/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/menu.imageset/menu.png -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/order-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "order-icon.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/order-icon.imageset/order-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/order-icon.imageset/order-icon.png -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/profile.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "profile.jpeg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/profile.imageset/profile.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/profile.imageset/profile.jpeg -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/wishlist.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "wishlist.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/wishlist.imageset/wishlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/wishlist.imageset/wishlist.png -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/4.imageset/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/4.imageset/4.jpg -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "4.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/5.imageset/2AT685J.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/5.imageset/2AT685J.jpg -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "2AT685J.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/nike-shoes-four.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "filename" : "nike-removebg-preview.jpg", 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/nike-shoes-four.imageset/nike-removebg-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/nike-shoes-four.imageset/nike-removebg-preview.jpg -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/nike-shoes-one.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "filename" : "alexander-rotker-l8p1aWZqHvE-unsplash.jpg", 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/nike-shoes-one.imageset/alexander-rotker-l8p1aWZqHvE-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/nike-shoes-one.imageset/alexander-rotker-l8p1aWZqHvE-unsplash.jpg -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/nike-shoes-three.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "shoe-1324431_1920.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/nike-shoes-three.imageset/shoe-1324431_1920.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/nike-shoes-three.imageset/shoe-1324431_1920.jpg -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/nike-shoes-two.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "revolt-164_6wVEHfI-unsplash.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/nike-shoes-two.imageset/revolt-164_6wVEHfI-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/nike-shoes-two.imageset/revolt-164_6wVEHfI-unsplash.jpg -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Services/ProductRepositoryProtocol.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ProductRepositoryProtocol.swift 3 | // SideMenu-SwiftUI 4 | // 5 | // Created by Arvind on 23/11/20. 6 | // 7 | 8 | import Foundation 9 | 10 | // MARK: - Product Repository (Dependency Inversion) 11 | protocol ProductRepositoryProtocol { 12 | func getProducts() -> [ProductProtocol] 13 | } 14 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Utils/ProductHelpers.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ProductHelpers.swift 3 | // SideMenu-SwiftUI 4 | // 5 | // Created by Arvind on 23/11/20. 6 | // 7 | 8 | import Foundation 9 | 10 | // MARK: - Legacy Support 11 | func getProductList() -> [Product] { 12 | return ProductRepository().getProducts().compactMap { $0 as? Product } 13 | } 14 | -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Views/Separator.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Separator.swift 3 | // SideMenu-SwiftUI 4 | // 5 | // Created by Arvind on 23/11/20. 6 | // 7 | 8 | import SwiftUI 9 | 10 | // MARK: - Separator Component 11 | struct Separator: View { 12 | var body: some View { 13 | Rectangle() 14 | .frame(height: 1) 15 | .foregroundColor(.white.opacity(0.2)) 16 | .padding(.vertical, 20) 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /SlideMenuIcons/Menu-Icons.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SlideMenuIcons/Menu-Icons.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /SlideMenuIcons/Menu-Icons.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/SlideMenuIcons/Menu-Icons.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SlideMenuIcons/Menu-Icons.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | Menu-Icons.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /SlideMenuIcons/Menu-Icons/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SlideMenuIcons/Menu-Icons/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SlideMenuIcons/sideMenuIcons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/SlideMenuIcons/sideMenuIcons.gif -------------------------------------------------------------------------------- /Source/insta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Source/insta.png -------------------------------------------------------------------------------- /Source/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Source/linkedin.png -------------------------------------------------------------------------------- /Source/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/Source/paypal.png -------------------------------------------------------------------------------- /Source/telegram.svg: -------------------------------------------------------------------------------- 1 | Telegram icon -------------------------------------------------------------------------------- /SwappingBall/SwappingBall.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SwappingBall/SwappingBall.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /SwappingBall/SwappingBall.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/SwappingBall/SwappingBall.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SwappingBall/SwappingBall.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | SwappingBall.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /SwappingBall/SwappingBall/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /SwappingBall/SwappingBall/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SwappingBall/SwappingBall/Assets.xcassets/profile.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "profilemy.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SwappingBall/SwappingBall/Assets.xcassets/profile.imageset/profilemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/SwappingBall/SwappingBall/Assets.xcassets/profile.imageset/profilemy.png -------------------------------------------------------------------------------- /SwappingBall/SwappingBall/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SwappingBall/ball-animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/SwappingBall/ball-animation.gif -------------------------------------------------------------------------------- /ThreeDotRotation/ThreeDotRotation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ThreeDotRotation/ThreeDotRotation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ThreeDotRotation/ThreeDotRotation.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/ThreeDotRotation/ThreeDotRotation.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ThreeDotRotation/ThreeDotRotation/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ThreeDotRotation/ThreeDotRotation/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ThreeDotRotation/ThreeDotRotation/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/animated-tabbar/animated-tabbar.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | animated-tabbar.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/Resource/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/Resource/Assets.xcassets/camera.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "camera-7.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/Resource/Assets.xcassets/camera.imageset/camera-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/animated-tabbar/animated-tabbar/Resource/Assets.xcassets/camera.imageset/camera-7.png -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/Resource/Assets.xcassets/dumbbell.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "dumbbell-7.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/Resource/Assets.xcassets/dumbbell.imageset/dumbbell-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/animated-tabbar/animated-tabbar/Resource/Assets.xcassets/dumbbell.imageset/dumbbell-7.png -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/Resource/Assets.xcassets/heart.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "heart-7.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/Resource/Assets.xcassets/heart.imageset/heart-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/animated-tabbar/animated-tabbar/Resource/Assets.xcassets/heart.imageset/heart-7.png -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/Resource/Assets.xcassets/home.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "home.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/Resource/Assets.xcassets/home.imageset/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/animated-tabbar/animated-tabbar/Resource/Assets.xcassets/home.imageset/home.png -------------------------------------------------------------------------------- /facebook-template/facebook-template.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /facebook-template/facebook-template.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /facebook-template/facebook-template.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /facebook-template/facebook-template.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /facebook-template/facebook-template.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | facebook-template.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Images/1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "luis-vidal-LplDKNWzFfA-unsplash.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Images/1.imageset/luis-vidal-LplDKNWzFfA-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/Images/1.imageset/luis-vidal-LplDKNWzFfA-unsplash.jpg -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Images/2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "yannick-menard-Dmvnnt-nfkA-unsplash.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Images/2.imageset/yannick-menard-Dmvnnt-nfkA-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/Images/2.imageset/yannick-menard-Dmvnnt-nfkA-unsplash.jpg -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Images/3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "david-emrich-F5RuqvCbCEY-unsplash.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Images/3.imageset/david-emrich-F5RuqvCbCEY-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/Images/3.imageset/david-emrich-F5RuqvCbCEY-unsplash.jpg -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Images/4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "pawel-nolbert-xe-ss5Tg2mo-unsplash.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Images/4.imageset/pawel-nolbert-xe-ss5Tg2mo-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/Images/4.imageset/pawel-nolbert-xe-ss5Tg2mo-unsplash.jpg -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Images/5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "mohamed-ahsan-YxfYBKMjYqk-unsplash.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Images/5.imageset/mohamed-ahsan-YxfYBKMjYqk-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/Images/5.imageset/mohamed-ahsan-YxfYBKMjYqk-unsplash.jpg -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Navigation/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Navigation/facebook-messenger.imageset/icons8-facebook-messenger-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/Navigation/facebook-messenger.imageset/icons8-facebook-messenger-30.png -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Navigation/facebook-messenger.imageset/icons8-facebook-messenger-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/Navigation/facebook-messenger.imageset/icons8-facebook-messenger-60.png -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Navigation/group-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "icons8-user-account-50.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Navigation/group-icon.imageset/icons8-user-account-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/Navigation/group-icon.imageset/icons8-user-account-50.png -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Navigation/notification-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "icons8-notification-24.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "notification-icon.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "author" : "xcode", 20 | "version" : 1 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Navigation/notification-icon.imageset/icons8-notification-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/Navigation/notification-icon.imageset/icons8-notification-24.png -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Navigation/notification-icon.imageset/notification-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/Navigation/notification-icon.imageset/notification-icon.png -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Navigation/search-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "icons8-search-24.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "icons8-search-48.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "author" : "xcode", 20 | "version" : 1 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Navigation/search-icon.imageset/icons8-search-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/Navigation/search-icon.imageset/icons8-search-24.png -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Navigation/search-icon.imageset/icons8-search-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/Navigation/search-icon.imageset/icons8-search-48.png -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/Add.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Group.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Group@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Group@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/Add.imageset/Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/Add.imageset/Group.png -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/Add.imageset/Group@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/Add.imageset/Group@2x.png -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/Add.imageset/Group@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/Add.imageset/Group@3x.png -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/Like.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "filename" : "like.png", 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/Like.imageset/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/Like.imageset/like.png -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/albums.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "icons8-albums-50.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/albums.imageset/icons8-albums-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/albums.imageset/icons8-albums-50.png -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/comment.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "comment.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/comment.imageset/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/comment.imageset/comment.png -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/facebook-text.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "face.svg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/messenger-30.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "icons8-facebook-messenger-30.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/messenger-30.imageset/icons8-facebook-messenger-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/messenger-30.imageset/icons8-facebook-messenger-30.png -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/profile.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "my-profile.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/profile.imageset/my-profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/profile.imageset/my-profile.jpg -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/search-64.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "icons8-search-24.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/search-64.imageset/icons8-search-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/search-64.imageset/icons8-search-24.png -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/share.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "share.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/share.imageset/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/share.imageset/share.png -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/video-call.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "icons8-video-call-50.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/video-call.imageset/icons8-video-call-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/video-call.imageset/icons8-video-call-50.png -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/angry.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "angry,anger,emoji,facebook reaction,reaction,face,expression,1991061.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/angry.imageset/angry,anger,emoji,facebook reaction,reaction,face,expression,1991061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/angry.imageset/angry,anger,emoji,facebook reaction,reaction,face,expression,1991061.png -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/care.imageset/facebook care emoji,care,facebook reaction,emoji,support,facebook care reaction,face,emoticon,1991058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/care.imageset/facebook care emoji,care,facebook reaction,emoji,support,facebook care reaction,face,emoticon,1991058.png -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/haha.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "haha,emoji,happy,facebook,social-media,expression,facebook reaction,1991060.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/haha.imageset/haha,emoji,happy,facebook,social-media,expression,facebook reaction,1991060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/haha.imageset/haha,emoji,happy,facebook,social-media,expression,facebook reaction,1991060.png -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/like.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "like,love,favorite,thumbs-up,facebook reaction,1991059.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/like.imageset/like,love,favorite,thumbs-up,facebook reaction,1991059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/like.imageset/like,love,favorite,thumbs-up,facebook reaction,1991059.png -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/love.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "love,heart,emoji,facebook reaction,reaction,1991064.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/love.imageset/love,heart,emoji,facebook reaction,reaction,1991064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/love.imageset/love,heart,emoji,facebook reaction,reaction,1991064.png -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/sad.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "sad,unhappy,emoji,facebook reaction,reaction,1991063.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/sad.imageset/sad,unhappy,emoji,facebook reaction,reaction,1991063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/sad.imageset/sad,unhappy,emoji,facebook reaction,reaction,1991063.png -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/wow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "wow,face,emotion,expression,surprise,emoji,facebook reaction,1991062.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/wow.imageset/wow,face,emotion,expression,surprise,emoji,facebook reaction,1991062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/wow.imageset/wow,face,emotion,expression,surprise,emoji,facebook reaction,1991062.png -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/postImages/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "valdemars-magone-8ACtYtJ5G-E-unsplash.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image1.imageset/valdemars-magone-8ACtYtJ5G-E-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image1.imageset/valdemars-magone-8ACtYtJ5G-E-unsplash.jpg -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "filename" : "Cute-Girl-Profile-pictures-For-Facebook-2.jpg", 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image2.imageset/Cute-Girl-Profile-pictures-For-Facebook-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image2.imageset/Cute-Girl-Profile-pictures-For-Facebook-2.jpg -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "filename" : "image.jpeg", 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image3.imageset/image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image3.imageset/image.jpeg -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "filename" : "images (1).jpeg", 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image4.imageset/images (1).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image4.imageset/images (1).jpeg -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "filename" : "images.jpeg", 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image5.imageset/images.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image5.imageset/images.jpeg -------------------------------------------------------------------------------- /linkedin-template/linkedin-template.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /linkedin-template/linkedin-template.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /linkedin-template/linkedin-template.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/linkedin-template/linkedin-template.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /linkedin-template/linkedin-template.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | linkedin-template.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Add.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Group.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Group@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Group@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Add.imageset/Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/linkedin-template/linkedin-template/Resource/Assets.xcassets/Add.imageset/Group.png -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Add.imageset/Group@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/linkedin-template/linkedin-template/Resource/Assets.xcassets/Add.imageset/Group@2x.png -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Add.imageset/Group@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/linkedin-template/linkedin-template/Resource/Assets.xcassets/Add.imageset/Group@3x.png -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "filename" : "valdemars-magone-8ACtYtJ5G-E-unsplash.jpg", 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image1.imageset/valdemars-magone-8ACtYtJ5G-E-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image1.imageset/valdemars-magone-8ACtYtJ5G-E-unsplash.jpg -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "filename" : "Cute-Girl-Profile-pictures-For-Facebook-2.jpg", 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image2.imageset/Cute-Girl-Profile-pictures-For-Facebook-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image2.imageset/Cute-Girl-Profile-pictures-For-Facebook-2.jpg -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "filename" : "image.jpeg", 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image3.imageset/image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image3.imageset/image.jpeg -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "filename" : "images (1).jpeg", 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image4.imageset/images (1).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image4.imageset/images (1).jpeg -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "filename" : "images.jpeg", 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image5.imageset/images.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image5.imageset/images.jpeg -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/profile.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "filename" : "my-profile.jpg", 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/profile.imageset/my-profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/profile.imageset/my-profile.jpg -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Post/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Post/post1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "dmitry-chernyshov-mP7aPSUm7aE-unsplash.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Post/post1.imageset/dmitry-chernyshov-mP7aPSUm7aE-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/linkedin-template/linkedin-template/Resource/Assets.xcassets/Post/post1.imageset/dmitry-chernyshov-mP7aPSUm7aE-unsplash.jpg -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Post/post2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "emile-perron-xrVDYZRGdw4-unsplash.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Post/post2.imageset/emile-perron-xrVDYZRGdw4-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/linkedin-template/linkedin-template/Resource/Assets.xcassets/Post/post2.imageset/emile-perron-xrVDYZRGdw4-unsplash.jpg -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Post/post3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "michael-dziedzic-qDG7XKJLKbs-unsplash.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Post/post3.imageset/michael-dziedzic-qDG7XKJLKbs-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/linkedin-template/linkedin-template/Resource/Assets.xcassets/Post/post3.imageset/michael-dziedzic-qDG7XKJLKbs-unsplash.jpg -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Post/post4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "markus-spiske-1nInzk7c0hg-unsplash.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Post/post4.imageset/markus-spiske-1nInzk7c0hg-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/linkedin-template/linkedin-template/Resource/Assets.xcassets/Post/post4.imageset/markus-spiske-1nInzk7c0hg-unsplash.jpg -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/comment.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "filename" : "icons8-chat-bubble-50 (1).png", 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/comment.imageset/icons8-chat-bubble-50 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/linkedin-template/linkedin-template/Resource/Assets.xcassets/comment.imageset/icons8-chat-bubble-50 (1).png -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/like-button.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "like-button-removebg-preview.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/like-button.imageset/like-button-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/linkedin-template/linkedin-template/Resource/Assets.xcassets/like-button.imageset/like-button-removebg-preview.png -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/linkedin-circle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "iconfinder_social-linkedin-circle_771370.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/linkedin-circle.imageset/iconfinder_social-linkedin-circle_771370.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/linkedin-template/linkedin-template/Resource/Assets.xcassets/linkedin-circle.imageset/iconfinder_social-linkedin-circle_771370.png -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/message.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "icons8-chat-bubble-50.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/message.imageset/icons8-chat-bubble-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/linkedin-template/linkedin-template/Resource/Assets.xcassets/message.imageset/icons8-chat-bubble-50.png -------------------------------------------------------------------------------- /tinder-template/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/tinder-template/.DS_Store -------------------------------------------------------------------------------- /tinder-template/tinder-template.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/tinder-template/tinder-template.gif -------------------------------------------------------------------------------- /tinder-template/tinder-template.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /tinder-template/tinder-template.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /tinder-template/tinder-template.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/tinder-template/tinder-template.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /tinder-template/tinder-template.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | tinder-template.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /tinder-template/tinder-template/ContentView/ContentView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ContentView.swift 3 | // tinder-template 4 | // 5 | // Created by Arvind on 01/12/20. 6 | // Refactored to follow SOLID principles 7 | // 8 | 9 | import SwiftUI 10 | 11 | struct ContentView: View { 12 | var body: some View { 13 | MainView() 14 | } 15 | } 16 | 17 | struct ContentView_Previews: PreviewProvider { 18 | static var previews: some View { 19 | ContentView() 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tinder-template/tinder-template/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/dismiss_circle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "filename" : "dismiss_circle@2x.png", 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/dismiss_circle.imageset/dismiss_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/tinder-template/tinder-template/Resource/Assets.xcassets/dismiss_circle.imageset/dismiss_circle@2x.png -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/image/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/image/image1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "fezbot2000-ByZMSgCuszw-unsplash.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/image/image1.imageset/fezbot2000-ByZMSgCuszw-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/tinder-template/tinder-template/Resource/Assets.xcassets/image/image1.imageset/fezbot2000-ByZMSgCuszw-unsplash.jpg -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/image/image2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "jassir-jonis-xQ2a8aAPbYc-unsplash.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/image/image2.imageset/jassir-jonis-xQ2a8aAPbYc-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/tinder-template/tinder-template/Resource/Assets.xcassets/image/image2.imageset/jassir-jonis-xQ2a8aAPbYc-unsplash.jpg -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/image/image3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "filename" : "michael-dam-mEZ3PoFGs_k-unsplash.jpg", 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/image/image3.imageset/michael-dam-mEZ3PoFGs_k-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/tinder-template/tinder-template/Resource/Assets.xcassets/image/image3.imageset/michael-dam-mEZ3PoFGs_k-unsplash.jpg -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/image/image4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "atikh-bana-_KaMTEmJnxY-unsplash.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/image/image4.imageset/atikh-bana-_KaMTEmJnxY-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/tinder-template/tinder-template/Resource/Assets.xcassets/image/image4.imageset/atikh-bana-_KaMTEmJnxY-unsplash.jpg -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/image/profile.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "my-profile.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/image/profile.imageset/my-profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/tinder-template/tinder-template/Resource/Assets.xcassets/image/profile.imageset/my-profile.jpg -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/like_circle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "filename" : "like_circle@2x.png", 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/like_circle.imageset/like_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/tinder-template/tinder-template/Resource/Assets.xcassets/like_circle.imageset/like_circle@2x.png -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/rewind_circle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "filename" : "refresh_circle@2x.png", 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/rewind_circle.imageset/refresh_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/tinder-template/tinder-template/Resource/Assets.xcassets/rewind_circle.imageset/refresh_circle@2x.png -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/super_like_circle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "filename" : "super_like_circle@2x.png", 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/super_like_circle.imageset/super_like_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/d0c900fc737add812f2a9adc763ce1ee713fd365/tinder-template/tinder-template/Resource/Assets.xcassets/super_like_circle.imageset/super_like_circle@2x.png --------------------------------------------------------------------------------