├── .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/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /AddRemoveButton/AddRemoveButton.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AddRemoveButton/AddRemoveButton.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AddRemoveButton/AddRemoveButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AddRemoveButton/AddRemoveButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AddRemoveButton/AddRemoveButton.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AddRemoveButton/AddRemoveButton.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AddRemoveButton/AddRemoveButton.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AddRemoveButton/AddRemoveButton.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AddRemoveButton/AddRemoveButton/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AddRemoveButton/AddRemoveButton/AppDelegate.swift -------------------------------------------------------------------------------- /AddRemoveButton/AddRemoveButton/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AddRemoveButton/AddRemoveButton/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /AddRemoveButton/AddRemoveButton/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AddRemoveButton/AddRemoveButton/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AddRemoveButton/AddRemoveButton/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AddRemoveButton/AddRemoveButton/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AddRemoveButton/AddRemoveButton/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AddRemoveButton/AddRemoveButton/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AddRemoveButton/AddRemoveButton/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AddRemoveButton/AddRemoveButton/ContentView.swift -------------------------------------------------------------------------------- /AddRemoveButton/AddRemoveButton/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AddRemoveButton/AddRemoveButton/Info.plist -------------------------------------------------------------------------------- /AddRemoveButton/AddRemoveButton/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AddRemoveButton/AddRemoveButton/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AddRemoveButton/AddRemoveButton/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AddRemoveButton/AddRemoveButton/SceneDelegate.swift -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/AppDelegate/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/AppDelegate/AppDelegate.swift -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/AppDelegate/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/AppDelegate/SceneDelegate.swift -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Color/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/Color/Color.swift -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/ContentView/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/ContentView/ContentView.swift -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/ContentView/SideMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/ContentView/SideMenu.swift -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/Info.plist -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/MenuButton/MenuButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/MenuButton/MenuButton.swift -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/MenuItems/Abouts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/MenuItems/Abouts.swift -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/MenuItems/HomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/MenuItems/HomeView.swift -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/MenuItems/Orders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/MenuItems/Orders.swift -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/MenuItems/Wishlist.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/MenuItems/Wishlist.swift -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/Contents.json -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/api.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/api.imageset/Contents.json -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/api.imageset/api-icon-png-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/closures.imageset/Contents.json -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/closures.imageset/closure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/closures.imageset/closure.jpg -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/closuress.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/closuress.imageset/Contents.json -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/closuress.imageset/closuress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/closuress.imageset/closuress.svg -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/delegate.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/delegate.imageset/Contents.json -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/delegate.imageset/delegate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/delegate.imageset/delegate.png -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/protocol.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/protocol.imageset/Contents.json -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/protocol.imageset/protocol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/images/protocol.imageset/protocol.png -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/profile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/profile.imageset/Contents.json -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/profile.imageset/my-profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/Resource/Assets.xcassets/profile.imageset/my-profile.jpg -------------------------------------------------------------------------------- /Animated-SideMenu/Animated-SideMenu/StoryBoard/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Animated-SideMenu/Animated-SideMenu/StoryBoard/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AnimatedDots/AnimatedDots.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AnimatedDots/AnimatedDots.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AnimatedDots/AnimatedDots.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots.xcodeproj/project.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AnimatedDots/AnimatedDots.xcodeproj/project.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots.xcodeproj/xcuserdata/PRITAL.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AnimatedDots/AnimatedDots.xcodeproj/xcuserdata/PRITAL.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AnimatedDots/AnimatedDots.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AnimatedDots/AnimatedDots.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AnimatedDots/AnimatedDots/AppDelegate.swift -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AnimatedDots/AnimatedDots/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AnimatedDots/AnimatedDots/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots/Assets.xcassets/profile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AnimatedDots/AnimatedDots/Assets.xcassets/profile.imageset/Contents.json -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots/Assets.xcassets/profile.imageset/profilemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AnimatedDots/AnimatedDots/Assets.xcassets/profile.imageset/profilemy.png -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AnimatedDots/AnimatedDots/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AnimatedDots/AnimatedDots/ContentView.swift -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AnimatedDots/AnimatedDots/Info.plist -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AnimatedDots/AnimatedDots/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AnimatedDots/AnimatedDots/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/AnimatedDots/AnimatedDots/SceneDelegate.swift -------------------------------------------------------------------------------- /BackToBackAnimatedDot/BackToBackAnimatedDot.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/BackToBackAnimatedDot/BackToBackAnimatedDot.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BackToBackAnimatedDot/BackToBackAnimatedDot.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/BackToBackAnimatedDot/BackToBackAnimatedDot.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BackToBackAnimatedDot/BackToBackAnimatedDot.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/BackToBackAnimatedDot/BackToBackAnimatedDot.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /BackToBackAnimatedDot/BackToBackAnimatedDot/AnimatedDots.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/BackToBackAnimatedDot/BackToBackAnimatedDot/AnimatedDots.swift -------------------------------------------------------------------------------- /BackToBackAnimatedDot/BackToBackAnimatedDot/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/BackToBackAnimatedDot/BackToBackAnimatedDot/AppDelegate.swift -------------------------------------------------------------------------------- /BackToBackAnimatedDot/BackToBackAnimatedDot/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/BackToBackAnimatedDot/BackToBackAnimatedDot/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /BackToBackAnimatedDot/BackToBackAnimatedDot/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/BackToBackAnimatedDot/BackToBackAnimatedDot/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /BackToBackAnimatedDot/BackToBackAnimatedDot/Assets.xcassets/profile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/BackToBackAnimatedDot/BackToBackAnimatedDot/Assets.xcassets/profile.imageset/Contents.json -------------------------------------------------------------------------------- /BackToBackAnimatedDot/BackToBackAnimatedDot/Assets.xcassets/profile.imageset/profilemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/BackToBackAnimatedDot/BackToBackAnimatedDot/Assets.xcassets/profile.imageset/profilemy.png -------------------------------------------------------------------------------- /BackToBackAnimatedDot/BackToBackAnimatedDot/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/BackToBackAnimatedDot/BackToBackAnimatedDot/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /BackToBackAnimatedDot/BackToBackAnimatedDot/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/BackToBackAnimatedDot/BackToBackAnimatedDot/ContentView.swift -------------------------------------------------------------------------------- /BackToBackAnimatedDot/BackToBackAnimatedDot/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/BackToBackAnimatedDot/BackToBackAnimatedDot/Info.plist -------------------------------------------------------------------------------- /BackToBackAnimatedDot/BackToBackAnimatedDot/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/BackToBackAnimatedDot/BackToBackAnimatedDot/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /BackToBackAnimatedDot/BackToBackAnimatedDot/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/BackToBackAnimatedDot/BackToBackAnimatedDot/SceneDelegate.swift -------------------------------------------------------------------------------- /Card-Payment/Card-Payment.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Card-Payment/Card-Payment.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Card-Payment/Card-Payment.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Card-Payment/Card-Payment.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Card-Payment/Card-Payment.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/AppDelegate/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/AppDelegate/AppDelegate.swift -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/AppDelegate/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/AppDelegate/SceneDelegate.swift -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Color/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/Color/Color.swift -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/Info.plist -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/Resource/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/Resource/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/card-bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/Resource/Assets.xcassets/card-bg.imageset/Contents.json -------------------------------------------------------------------------------- /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/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/Resource/Assets.xcassets/card-bg2.imageset/Contents.json -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/card-bg3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/Resource/Assets.xcassets/card-bg3.imageset/Contents.json -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/card-bg3.imageset/download.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/Resource/Assets.xcassets/card-bg3.imageset/download.jpeg -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/Contents.json -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/amazon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/amazon.imageset/Contents.json -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/amazon.imageset/icons8-amazon-48 (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/apple.imageset/Contents.json -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/apple.imageset/icons8-apple-logo-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/flipkart.imageset/Contents.json -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/flipkart.imageset/flipkart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/flipkart.imageset/flipkart.png -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/nike.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/nike.imageset/Contents.json -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/nike.imageset/icons8-nike-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/shop.imageset/Contents.json -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/cartdetails/shop.imageset/icons8-shop-48 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/Resource/Assets.xcassets/sbi.card.imageset/Contents.json -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/sbi.card.imageset/sbi.card-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/Resource/Assets.xcassets/visa.imageset/Contents.json -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Assets.xcassets/visa.imageset/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/Resource/Assets.xcassets/visa.imageset/visa.png -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/Resource/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/Resource/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/View/CardDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/View/CardDetailView.swift -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/View/CardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/View/CardView.swift -------------------------------------------------------------------------------- /Card-Payment/Card-Payment/View/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Card-Payment/Card-Payment/View/ContentView.swift -------------------------------------------------------------------------------- /CharcterAnimation/CharcterAnimation-SwiftUI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CharcterAnimation/CharcterAnimation-SwiftUI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CharcterAnimation/CharcterAnimation-SwiftUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CharcterAnimation/CharcterAnimation-SwiftUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CharcterAnimation/CharcterAnimation-SwiftUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CharcterAnimation/CharcterAnimation-SwiftUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CharcterAnimation/CharcterAnimation-SwiftUI/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CharcterAnimation/CharcterAnimation-SwiftUI/AppDelegate.swift -------------------------------------------------------------------------------- /CharcterAnimation/CharcterAnimation-SwiftUI/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CharcterAnimation/CharcterAnimation-SwiftUI/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CharcterAnimation/CharcterAnimation-SwiftUI/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CharcterAnimation/CharcterAnimation-SwiftUI/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CharcterAnimation/CharcterAnimation-SwiftUI/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CharcterAnimation/CharcterAnimation-SwiftUI/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CharcterAnimation/CharcterAnimation-SwiftUI/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CharcterAnimation/CharcterAnimation-SwiftUI/ContentView.swift -------------------------------------------------------------------------------- /CharcterAnimation/CharcterAnimation-SwiftUI/GestureAnimation.xcdatamodeld/GestureAnimation.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CharcterAnimation/CharcterAnimation-SwiftUI/GestureAnimation.xcdatamodeld/GestureAnimation.xcdatamodel/contents -------------------------------------------------------------------------------- /CharcterAnimation/CharcterAnimation-SwiftUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CharcterAnimation/CharcterAnimation-SwiftUI/Info.plist -------------------------------------------------------------------------------- /CharcterAnimation/CharcterAnimation-SwiftUI/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CharcterAnimation/CharcterAnimation-SwiftUI/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CharcterAnimation/CharcterAnimation-SwiftUI/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CharcterAnimation/CharcterAnimation-SwiftUI/SceneDelegate.swift -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ChartAnimation/ChartAnimation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ChartAnimation/ChartAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ChartAnimation/ChartAnimation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ChartAnimation/ChartAnimation.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ChartAnimation/ChartAnimation.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ChartAnimation/ChartAnimation/AppDelegate.swift -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ChartAnimation/ChartAnimation/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ChartAnimation/ChartAnimation/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ChartAnimation/ChartAnimation/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation/Assets.xcassets/profile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ChartAnimation/ChartAnimation/Assets.xcassets/profile.imageset/Contents.json -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation/Assets.xcassets/profile.imageset/profilemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ChartAnimation/ChartAnimation/Assets.xcassets/profile.imageset/profilemy.png -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ChartAnimation/ChartAnimation/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ChartAnimation/ChartAnimation/ContentView.swift -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ChartAnimation/ChartAnimation/Info.plist -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ChartAnimation/ChartAnimation/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ChartAnimation/ChartAnimation/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ChartAnimation/ChartAnimation/SceneDelegate.swift -------------------------------------------------------------------------------- /CircleRotation/CircleRotation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CircleRotation/CircleRotation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CircleRotation/CircleRotation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CircleRotation/CircleRotation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CircleRotation/CircleRotation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CircleRotation/CircleRotation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CircleRotation/CircleRotation.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CircleRotation/CircleRotation.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CircleRotation/CircleRotation/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CircleRotation/CircleRotation/AppDelegate.swift -------------------------------------------------------------------------------- /CircleRotation/CircleRotation/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CircleRotation/CircleRotation/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /CircleRotation/CircleRotation/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CircleRotation/CircleRotation/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CircleRotation/CircleRotation/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CircleRotation/CircleRotation/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CircleRotation/CircleRotation/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CircleRotation/CircleRotation/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CircleRotation/CircleRotation/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CircleRotation/CircleRotation/Color.swift -------------------------------------------------------------------------------- /CircleRotation/CircleRotation/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CircleRotation/CircleRotation/ContentView.swift -------------------------------------------------------------------------------- /CircleRotation/CircleRotation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CircleRotation/CircleRotation/Info.plist -------------------------------------------------------------------------------- /CircleRotation/CircleRotation/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CircleRotation/CircleRotation/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CircleRotation/CircleRotation/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/CircleRotation/CircleRotation/SceneDelegate.swift -------------------------------------------------------------------------------- /ColorChanges/ColorChanges.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ColorChanges/ColorChanges.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ColorChanges/ColorChanges.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ColorChanges/ColorChanges.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ColorChanges/ColorChanges.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ColorChanges/ColorChanges.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ColorChanges/ColorChanges.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ColorChanges/ColorChanges.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ColorChanges/ColorChanges.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ColorChanges/ColorChanges.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ColorChanges/ColorChanges/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ColorChanges/ColorChanges/AppDelegate.swift -------------------------------------------------------------------------------- /ColorChanges/ColorChanges/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ColorChanges/ColorChanges/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /ColorChanges/ColorChanges/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ColorChanges/ColorChanges/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ColorChanges/ColorChanges/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ColorChanges/ColorChanges/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ColorChanges/ColorChanges/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ColorChanges/ColorChanges/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ColorChanges/ColorChanges/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ColorChanges/ColorChanges/ContentView.swift -------------------------------------------------------------------------------- /ColorChanges/ColorChanges/GlobalHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ColorChanges/ColorChanges/GlobalHelpers.swift -------------------------------------------------------------------------------- /ColorChanges/ColorChanges/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ColorChanges/ColorChanges/Info.plist -------------------------------------------------------------------------------- /ColorChanges/ColorChanges/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ColorChanges/ColorChanges/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ColorChanges/ColorChanges/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ColorChanges/ColorChanges/SceneDelegate.swift -------------------------------------------------------------------------------- /ColorChanges/ColorChanges/SplashShape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ColorChanges/ColorChanges/SplashShape.swift -------------------------------------------------------------------------------- /ColorChanges/ColorChanges/SplashView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ColorChanges/ColorChanges/SplashView.swift -------------------------------------------------------------------------------- /Custom-Toggle/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Custom-Toggle/.gitattributes -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Custom-Toggle/swiftui-toggle.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Custom-Toggle/swiftui-toggle.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Custom-Toggle/swiftui-toggle.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Custom-Toggle/swiftui-toggle.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Custom-Toggle/swiftui-toggle.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Custom-Toggle/swiftui-toggle/AppDelegate.swift -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Custom-Toggle/swiftui-toggle/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Custom-Toggle/swiftui-toggle/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle/Assets.xcassets/volume.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Custom-Toggle/swiftui-toggle/Assets.xcassets/volume.imageset/Contents.json -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle/Assets.xcassets/volume.imageset/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Custom-Toggle/swiftui-toggle/Assets.xcassets/volume.imageset/volume.png -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Custom-Toggle/swiftui-toggle/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Custom-Toggle/swiftui-toggle/ContentView.swift -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Custom-Toggle/swiftui-toggle/Info.plist -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle/MainPageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Custom-Toggle/swiftui-toggle/MainPageView.swift -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Custom-Toggle/swiftui-toggle/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Custom-Toggle/swiftui-toggle/SceneDelegate.swift -------------------------------------------------------------------------------- /Custom-Toggle/swiftui-toggle/StyleKitName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Custom-Toggle/swiftui-toggle/StyleKitName.swift -------------------------------------------------------------------------------- /Custom-Toggle/toggle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Custom-Toggle/toggle.gif -------------------------------------------------------------------------------- /Insta-template/Insta-template.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Insta-template/Insta-template.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Insta-template/Insta-template.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Insta-template/Insta-template.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Insta-template/Insta-template.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Insta-template/Insta-template/AppDelegate/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/AppDelegate/AppDelegate.swift -------------------------------------------------------------------------------- /Insta-template/Insta-template/AppDelegate/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/AppDelegate/SceneDelegate.swift -------------------------------------------------------------------------------- /Insta-template/Insta-template/ButtonProvider/ButtonProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/ButtonProvider/ButtonProvider.swift -------------------------------------------------------------------------------- /Insta-template/Insta-template/Color/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Color/Color.swift -------------------------------------------------------------------------------- /Insta-template/Insta-template/ContentView/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/ContentView/ContentView.swift -------------------------------------------------------------------------------- /Insta-template/Insta-template/HomeView/HomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/HomeView/HomeView.swift -------------------------------------------------------------------------------- /Insta-template/Insta-template/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Info.plist -------------------------------------------------------------------------------- /Insta-template/Insta-template/InstaStory/InstaStory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/InstaStory/InstaStory.swift -------------------------------------------------------------------------------- /Insta-template/Insta-template/InstaStory/StoryProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/InstaStory/StoryProvider.swift -------------------------------------------------------------------------------- /Insta-template/Insta-template/PostCell/PostCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/PostCell/PostCell.swift -------------------------------------------------------------------------------- /Insta-template/Insta-template/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/Add.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Images/Add.imageset/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/Add.imageset/Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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/HEAD/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/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Images/Add.imageset/Group@3x.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Images/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/Instagram.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Images/Instagram.imageset/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/Instagram.imageset/Instagram Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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/HEAD/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/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Images/Story/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/Story/story-border-icon.imageset/Combined Shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Images/Story/story-border-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/message.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Images/message.imageset/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/message.imageset/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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/HEAD/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/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Images/my-profile-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/my-profile-icon.imageset/my-profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Images/profilemy.imageset/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Images/profilemy.imageset/profilemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Images/profilemy.imageset/profilemy.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Post/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/comment-icon.imageset/Comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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/HEAD/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/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Post/comment-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/like-fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Post/like-fill.imageset/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/like-fill.imageset/imageedit_4_9681815342.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Post/like-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/like-icon.imageset/Like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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/HEAD/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/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Post/more-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/more-icon.imageset/More.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Post/save-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/send-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Post/send-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Post/send-icon.imageset/Send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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/HEAD/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/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Post/send-icon.imageset/Send@3x.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/activity.imageset/Activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/activity.imageset/Activity.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/activity.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/activity.imageset/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/home.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/home.imageset/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/home.imageset/Home2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/home.imageset/Home2.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/photo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/photo.imageset/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/photo.imageset/Photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/photo.imageset/Photo.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/profile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/profile.imageset/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/profile.imageset/Profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/profile.imageset/Profile.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/search.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/search.imageset/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/search.imageset/Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/Tabbar/search.imageset/Search.png -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/postImages/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/postImages/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image1.imageset/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image2.imageset/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image3.imageset/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image3.imageset/image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image3.imageset/image.jpeg -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image4.imageset/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image4.imageset/images (1).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image5.imageset/Contents.json -------------------------------------------------------------------------------- /Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image5.imageset/images.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Resource/Assets.xcassets/postImages/image5.imageset/images.jpeg -------------------------------------------------------------------------------- /Insta-template/Insta-template/Storyboard/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Insta-template/Insta-template/Storyboard/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /InstagramLodingAnimation/InstagramLoadingAnimation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/InstagramLodingAnimation/InstagramLoadingAnimation.gif -------------------------------------------------------------------------------- /InstagramLodingAnimation/InstagramLodingAnimation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/InstagramLodingAnimation/InstagramLodingAnimation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /InstagramLodingAnimation/InstagramLodingAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/InstagramLodingAnimation/InstagramLodingAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /InstagramLodingAnimation/InstagramLodingAnimation.xcodeproj/xcshareddata/xcschemes/LodingAnimation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/InstagramLodingAnimation/InstagramLodingAnimation.xcodeproj/xcshareddata/xcschemes/LodingAnimation.xcscheme -------------------------------------------------------------------------------- /InstagramLodingAnimation/InstagramLodingAnimation/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/InstagramLodingAnimation/InstagramLodingAnimation/AppDelegate.swift -------------------------------------------------------------------------------- /InstagramLodingAnimation/InstagramLodingAnimation/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/InstagramLodingAnimation/InstagramLodingAnimation/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /InstagramLodingAnimation/InstagramLodingAnimation/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/InstagramLodingAnimation/InstagramLodingAnimation/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /InstagramLodingAnimation/InstagramLodingAnimation/Assets.xcassets/insta.imageset/854129_round_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/InstagramLodingAnimation/InstagramLodingAnimation/Assets.xcassets/insta.imageset/854129_round_512x512.png -------------------------------------------------------------------------------- /InstagramLodingAnimation/InstagramLodingAnimation/Assets.xcassets/insta.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/InstagramLodingAnimation/InstagramLodingAnimation/Assets.xcassets/insta.imageset/Contents.json -------------------------------------------------------------------------------- /InstagramLodingAnimation/InstagramLodingAnimation/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/InstagramLodingAnimation/InstagramLodingAnimation/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /InstagramLodingAnimation/InstagramLodingAnimation/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/InstagramLodingAnimation/InstagramLodingAnimation/ContentView.swift -------------------------------------------------------------------------------- /InstagramLodingAnimation/InstagramLodingAnimation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/InstagramLodingAnimation/InstagramLodingAnimation/Info.plist -------------------------------------------------------------------------------- /InstagramLodingAnimation/InstagramLodingAnimation/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/InstagramLodingAnimation/InstagramLodingAnimation/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /InstagramLodingAnimation/InstagramLodingAnimation/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/InstagramLodingAnimation/InstagramLodingAnimation/SceneDelegate.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/LICENSE -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI.xcodeproj/project.xcworkspace/xcuserdata/arvind.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/AppDelegate.swift -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/Assets.xcassets/1.imageset/Contents.json -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/1.imageset/revolt-164_6wVEHfI-unsplash-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/Assets.xcassets/1.imageset/revolt-164_6wVEHfI-unsplash-removebg-preview.png -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/Assets.xcassets/2.imageset/Contents.json -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/2.imageset/nike-removebg-preview-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/Assets.xcassets/2.imageset/nike-removebg-preview-removebg-preview.png -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/Assets.xcassets/3.imageset/Contents.json -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/3.imageset/shoe-1324431_1920-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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/HEAD/NikeAppUI/NikeAppUI/Assets.xcassets/4.imageset/4-removebg-preview.png -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/Assets.xcassets/4.imageset/Contents.json -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/Color/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/Assets.xcassets/Color/Contents.json -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/Color/bg.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/Assets.xcassets/Color/bg.colorset/Contents.json -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/Color/red.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/Assets.xcassets/Color/red.colorset/Contents.json -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/black.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/Assets.xcassets/black.imageset/Contents.json -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/black.imageset/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/Assets.xcassets/black.imageset/black.png -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/blue.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/Assets.xcassets/blue.imageset/Contents.json -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/blue.imageset/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/Assets.xcassets/blue.imageset/blue.png -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/nike.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/Assets.xcassets/nike.imageset/Contents.json -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/nike.imageset/nike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/Assets.xcassets/nike.imageset/nike.png -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/silver.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/Assets.xcassets/silver.imageset/Contents.json -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Assets.xcassets/silver.imageset/silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/Assets.xcassets/silver.imageset/silver.png -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/ContentView.swift -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/Info.plist -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/SceneDelegate.swift -------------------------------------------------------------------------------- /NikeAppUI/NikeAppUI/ShoesSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/NikeAppUI/NikeAppUI/ShoesSize.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/README.md -------------------------------------------------------------------------------- /RingAnimation/RingAnimation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/RingAnimation/RingAnimation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RingAnimation/RingAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/RingAnimation/RingAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RingAnimation/RingAnimation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/RingAnimation/RingAnimation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /RingAnimation/RingAnimation.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/RingAnimation/RingAnimation.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /RingAnimation/RingAnimation/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/RingAnimation/RingAnimation/AppDelegate.swift -------------------------------------------------------------------------------- /RingAnimation/RingAnimation/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/RingAnimation/RingAnimation/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /RingAnimation/RingAnimation/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/RingAnimation/RingAnimation/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /RingAnimation/RingAnimation/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/RingAnimation/RingAnimation/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /RingAnimation/RingAnimation/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/RingAnimation/RingAnimation/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /RingAnimation/RingAnimation/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/RingAnimation/RingAnimation/ContentView.swift -------------------------------------------------------------------------------- /RingAnimation/RingAnimation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/RingAnimation/RingAnimation/Info.plist -------------------------------------------------------------------------------- /RingAnimation/RingAnimation/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/RingAnimation/RingAnimation/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /RingAnimation/RingAnimation/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/RingAnimation/RingAnimation/SceneDelegate.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/.DS_Store -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/.DS_Store -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/AppDelegate/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/AppDelegate/AppDelegate.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/AppDelegate/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/AppDelegate/SceneDelegate.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/ContentView/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/ContentView/ContentView.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/ContentView/SideMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/ContentView/SideMenu.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Extensions/Color+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Extensions/Color+Extensions.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Extensions/UIImage+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Extensions/UIImage+Extensions.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Info.plist -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/MenuButton/MenuButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/MenuButton/MenuButton.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/MenuItems/Abouts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/MenuItems/Abouts.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/MenuItems/HomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/MenuItems/HomeView.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/MenuItems/Orders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/MenuItems/Orders.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/MenuItems/Wishlist.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/MenuItems/Wishlist.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Models/MenuConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Models/MenuConfiguration.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Models/MenuItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Models/MenuItem.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Models/MenuItemProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Models/MenuItemProtocol.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Models/MenuState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Models/MenuState.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Models/Product.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Models/Product.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Models/ProductProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Models/ProductProtocol.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/Contents.json -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/bag-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/bag-icon.imageset/Contents.json -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/bag-icon.imageset/bag-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/contact-icon.imageset/Contents.json -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/contact-icon.imageset/contact-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/home-icon.imageset/Contents.json -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/home-icon.imageset/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/home-icon.imageset/home.png -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/logout.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/logout.imageset/Contents.json -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/logout.imageset/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/logout.imageset/logout.png -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/menu.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/menu.imageset/Contents.json -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/menu.imageset/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/menu.imageset/menu.png -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/order-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/order-icon.imageset/Contents.json -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/order-icon.imageset/order-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/order-icon.imageset/order-icon.png -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/profile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/profile.imageset/Contents.json -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/profile.imageset/profile.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/profile.imageset/profile.jpeg -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/wishlist.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/wishlist.imageset/Contents.json -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/Images/wishlist.imageset/wishlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/4.imageset/4.jpg -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/4.imageset/Contents.json -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/5.imageset/2AT685J.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/5.imageset/2AT685J.jpg -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/5.imageset/Contents.json -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/Contents.json -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/nike-shoes-four.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/nike-shoes-four.imageset/Contents.json -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/nike-shoes-one.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/nike-shoes-one.imageset/Contents.json -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/nike-shoes-three.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/nike-shoes-three.imageset/Contents.json -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/nike-shoes-two.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Resource/Assets.xcassets/shoes/nike-shoes-two.imageset/Contents.json -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Services/ProductRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Services/ProductRepository.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Services/ProductRepositoryProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Services/ProductRepositoryProtocol.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/StoryBoard/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/StoryBoard/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Utils/ProductHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Utils/ProductHelpers.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Utils/SafeAreaHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Utils/SafeAreaHelpers.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Views/HamburgerMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Views/HamburgerMenu.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Views/MainContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Views/MainContent.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Views/MenuSidebar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Views/MenuSidebar.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Views/NavigationTitle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Views/NavigationTitle.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Views/ProductImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Views/ProductImage.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Views/ProductInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Views/ProductInfo.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Views/ProductRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Views/ProductRow.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Views/Separator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Views/Separator.swift -------------------------------------------------------------------------------- /SideMenuSwiftUI/SideMenu-SwiftUI/Views/UserProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SideMenuSwiftUI/SideMenu-SwiftUI/Views/UserProfile.swift -------------------------------------------------------------------------------- /SlideMenuIcons/Menu-Icons.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SlideMenuIcons/Menu-Icons.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SlideMenuIcons/Menu-Icons.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SlideMenuIcons/Menu-Icons.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SlideMenuIcons/Menu-Icons.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SlideMenuIcons/Menu-Icons.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SlideMenuIcons/Menu-Icons.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SlideMenuIcons/Menu-Icons.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /SlideMenuIcons/Menu-Icons.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SlideMenuIcons/Menu-Icons.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SlideMenuIcons/Menu-Icons/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SlideMenuIcons/Menu-Icons/AppDelegate.swift -------------------------------------------------------------------------------- /SlideMenuIcons/Menu-Icons/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SlideMenuIcons/Menu-Icons/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SlideMenuIcons/Menu-Icons/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SlideMenuIcons/Menu-Icons/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SlideMenuIcons/Menu-Icons/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SlideMenuIcons/Menu-Icons/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SlideMenuIcons/Menu-Icons/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SlideMenuIcons/Menu-Icons/ContentView.swift -------------------------------------------------------------------------------- /SlideMenuIcons/Menu-Icons/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SlideMenuIcons/Menu-Icons/Info.plist -------------------------------------------------------------------------------- /SlideMenuIcons/Menu-Icons/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SlideMenuIcons/Menu-Icons/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SlideMenuIcons/Menu-Icons/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SlideMenuIcons/Menu-Icons/SceneDelegate.swift -------------------------------------------------------------------------------- /SlideMenuIcons/sideMenuIcons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SlideMenuIcons/sideMenuIcons.gif -------------------------------------------------------------------------------- /Source/insta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Source/insta.png -------------------------------------------------------------------------------- /Source/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Source/instagram.svg -------------------------------------------------------------------------------- /Source/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Source/linkedin.png -------------------------------------------------------------------------------- /Source/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Source/linkedin.svg -------------------------------------------------------------------------------- /Source/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Source/paypal.png -------------------------------------------------------------------------------- /Source/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Source/telegram.svg -------------------------------------------------------------------------------- /Source/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/Source/twitter.svg -------------------------------------------------------------------------------- /SwappingBall/SwappingBall.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SwappingBall/SwappingBall.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwappingBall/SwappingBall.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SwappingBall/SwappingBall.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwappingBall/SwappingBall.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SwappingBall/SwappingBall.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SwappingBall/SwappingBall.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SwappingBall/SwappingBall.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SwappingBall/SwappingBall/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SwappingBall/SwappingBall/AppDelegate.swift -------------------------------------------------------------------------------- /SwappingBall/SwappingBall/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SwappingBall/SwappingBall/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /SwappingBall/SwappingBall/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SwappingBall/SwappingBall/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SwappingBall/SwappingBall/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SwappingBall/SwappingBall/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SwappingBall/SwappingBall/Assets.xcassets/profile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SwappingBall/SwappingBall/Assets.xcassets/profile.imageset/Contents.json -------------------------------------------------------------------------------- /SwappingBall/SwappingBall/Assets.xcassets/profile.imageset/profilemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SwappingBall/SwappingBall/Assets.xcassets/profile.imageset/profilemy.png -------------------------------------------------------------------------------- /SwappingBall/SwappingBall/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SwappingBall/SwappingBall/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SwappingBall/SwappingBall/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SwappingBall/SwappingBall/ContentView.swift -------------------------------------------------------------------------------- /SwappingBall/SwappingBall/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SwappingBall/SwappingBall/Info.plist -------------------------------------------------------------------------------- /SwappingBall/SwappingBall/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SwappingBall/SwappingBall/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SwappingBall/SwappingBall/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SwappingBall/SwappingBall/SceneDelegate.swift -------------------------------------------------------------------------------- /SwappingBall/ball-animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/SwappingBall/ball-animation.gif -------------------------------------------------------------------------------- /ThreeDotRotation/ThreeDotRotation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ThreeDotRotation/ThreeDotRotation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ThreeDotRotation/ThreeDotRotation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ThreeDotRotation/ThreeDotRotation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ThreeDotRotation/ThreeDotRotation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ThreeDotRotation/ThreeDotRotation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ThreeDotRotation/ThreeDotRotation.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ThreeDotRotation/ThreeDotRotation.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ThreeDotRotation/ThreeDotRotation/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ThreeDotRotation/ThreeDotRotation/AppDelegate.swift -------------------------------------------------------------------------------- /ThreeDotRotation/ThreeDotRotation/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ThreeDotRotation/ThreeDotRotation/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /ThreeDotRotation/ThreeDotRotation/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ThreeDotRotation/ThreeDotRotation/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ThreeDotRotation/ThreeDotRotation/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ThreeDotRotation/ThreeDotRotation/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ThreeDotRotation/ThreeDotRotation/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ThreeDotRotation/ThreeDotRotation/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ThreeDotRotation/ThreeDotRotation/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ThreeDotRotation/ThreeDotRotation/ContentView.swift -------------------------------------------------------------------------------- /ThreeDotRotation/ThreeDotRotation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ThreeDotRotation/ThreeDotRotation/Info.plist -------------------------------------------------------------------------------- /ThreeDotRotation/ThreeDotRotation/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ThreeDotRotation/ThreeDotRotation/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ThreeDotRotation/ThreeDotRotation/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/ThreeDotRotation/ThreeDotRotation/SceneDelegate.swift -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/animated-tabbar/animated-tabbar.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/animated-tabbar/animated-tabbar.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/animated-tabbar/animated-tabbar.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/animated-tabbar/animated-tabbar.xcodeproj/xcuserdata/arvind.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/animated-tabbar/animated-tabbar.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/AppDelegate/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/animated-tabbar/animated-tabbar/AppDelegate/AppDelegate.swift -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/AppDelegate/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/animated-tabbar/animated-tabbar/AppDelegate/SceneDelegate.swift -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/animated-tabbar/animated-tabbar/Info.plist -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/animated-tabbar/animated-tabbar/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/Resource/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/animated-tabbar/animated-tabbar/Resource/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/animated-tabbar/animated-tabbar/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/animated-tabbar/animated-tabbar/Resource/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/Resource/Assets.xcassets/camera.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/animated-tabbar/animated-tabbar/Resource/Assets.xcassets/camera.imageset/Contents.json -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/Resource/Assets.xcassets/camera.imageset/camera-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/animated-tabbar/animated-tabbar/Resource/Assets.xcassets/camera.imageset/camera-7.png -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/Resource/Assets.xcassets/dumbbell.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/animated-tabbar/animated-tabbar/Resource/Assets.xcassets/dumbbell.imageset/Contents.json -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/Resource/Assets.xcassets/dumbbell.imageset/dumbbell-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/animated-tabbar/animated-tabbar/Resource/Assets.xcassets/dumbbell.imageset/dumbbell-7.png -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/Resource/Assets.xcassets/heart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/animated-tabbar/animated-tabbar/Resource/Assets.xcassets/heart.imageset/Contents.json -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/Resource/Assets.xcassets/heart.imageset/heart-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/animated-tabbar/animated-tabbar/Resource/Assets.xcassets/heart.imageset/heart-7.png -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/Resource/Assets.xcassets/home.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/animated-tabbar/animated-tabbar/Resource/Assets.xcassets/home.imageset/Contents.json -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/Resource/Assets.xcassets/home.imageset/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/animated-tabbar/animated-tabbar/Resource/Assets.xcassets/home.imageset/home.png -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/Storyboard/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/animated-tabbar/animated-tabbar/Storyboard/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/TabbarButton/TabbarButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/animated-tabbar/animated-tabbar/TabbarButton/TabbarButton.swift -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/TabbarShape/TabbarShape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/animated-tabbar/animated-tabbar/TabbarShape/TabbarShape.swift -------------------------------------------------------------------------------- /animated-tabbar/animated-tabbar/View/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/animated-tabbar/animated-tabbar/View/ContentView.swift -------------------------------------------------------------------------------- /facebook-template/facebook-template.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /facebook-template/facebook-template.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /facebook-template/facebook-template.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /facebook-template/facebook-template.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /facebook-template/facebook-template/AppDelegate/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/AppDelegate/AppDelegate.swift -------------------------------------------------------------------------------- /facebook-template/facebook-template/AppDelegate/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/AppDelegate/SceneDelegate.swift -------------------------------------------------------------------------------- /facebook-template/facebook-template/Color/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Color/Color.swift -------------------------------------------------------------------------------- /facebook-template/facebook-template/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Info.plist -------------------------------------------------------------------------------- /facebook-template/facebook-template/NaviagtionBar/NavigationBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/NaviagtionBar/NavigationBar.swift -------------------------------------------------------------------------------- /facebook-template/facebook-template/NewPostView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/NewPostView.swift -------------------------------------------------------------------------------- /facebook-template/facebook-template/PostView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/PostView.swift -------------------------------------------------------------------------------- /facebook-template/facebook-template/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Images/1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/Images/1.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Images/2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/Images/2.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Images/3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/Images/3.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Images/4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/Images/4.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Images/5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/Images/5.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Images/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/Images/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Navigation/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/Navigation/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Navigation/group-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/Navigation/group-icon.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Navigation/search-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/Navigation/search-icon.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/Add.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/Add.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/Add.imageset/Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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/HEAD/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/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/Like.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/Like.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/Like.imageset/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/albums.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/albums.imageset/icons8-albums-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/comment.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/comment.imageset/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/facebook-text.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/facebook-text.imageset/face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/facebook-text.imageset/face.svg -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/messenger-30.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/messenger-30.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/profile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/profile.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/profile.imageset/my-profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/search-64.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/search-64.imageset/icons8-search-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/share.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/share.imageset/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/New-icos/video-call.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/angry.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/angry.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/care.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/care.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/haha.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/haha.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/like.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/like.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/love.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/love.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/sad.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/sad.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/wow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/Reaction/wow.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/postImages/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/postImages/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image1.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image2.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image3.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image3.imageset/image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image3.imageset/image.jpeg -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image4.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image4.imageset/images (1).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image5.imageset/Contents.json -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image5.imageset/images.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Assets.xcassets/postImages/image5.imageset/images.jpeg -------------------------------------------------------------------------------- /facebook-template/facebook-template/Resource/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/Resource/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /facebook-template/facebook-template/StoryProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/StoryProvider.swift -------------------------------------------------------------------------------- /facebook-template/facebook-template/StoryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/StoryView.swift -------------------------------------------------------------------------------- /facebook-template/facebook-template/View/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/facebook-template/facebook-template/View/ContentView.swift -------------------------------------------------------------------------------- /linkedin-template/linkedin-template.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /linkedin-template/linkedin-template.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /linkedin-template/linkedin-template.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /linkedin-template/linkedin-template.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/AppDelegate/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/AppDelegate/AppDelegate.swift -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/AppDelegate/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/AppDelegate/SceneDelegate.swift -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/ButtonProvider/ButtonProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/ButtonProvider/ButtonProvider.swift -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Color/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Color/Color.swift -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/ContentView/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/ContentView/ContentView.swift -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/HomeView/HomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/HomeView/HomeView.swift -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Info.plist -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Post/PostView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Post/PostView.swift -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Resource/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Add.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Resource/Assets.xcassets/Add.imageset/Contents.json -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Add.imageset/Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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/HEAD/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/HEAD/linkedin-template/linkedin-template/Resource/Assets.xcassets/Add.imageset/Group@3x.png -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Resource/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/Contents.json -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image1.imageset/Contents.json -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image2.imageset/Contents.json -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image3.imageset/Contents.json -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image3.imageset/image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image3.imageset/image.jpeg -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image4.imageset/Contents.json -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image4.imageset/images (1).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image5.imageset/Contents.json -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image5.imageset/images.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/image5.imageset/images.jpeg -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/profile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/profile.imageset/Contents.json -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/profile.imageset/my-profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Resource/Assets.xcassets/Image/profile.imageset/my-profile.jpg -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Post/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Resource/Assets.xcassets/Post/Contents.json -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Post/post1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Resource/Assets.xcassets/Post/post1.imageset/Contents.json -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Post/post2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Resource/Assets.xcassets/Post/post2.imageset/Contents.json -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Post/post3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Resource/Assets.xcassets/Post/post3.imageset/Contents.json -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/Post/post4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Resource/Assets.xcassets/Post/post4.imageset/Contents.json -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/comment.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Resource/Assets.xcassets/comment.imageset/Contents.json -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/comment.imageset/icons8-chat-bubble-50 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Resource/Assets.xcassets/like-button.imageset/Contents.json -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/linkedin-circle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Resource/Assets.xcassets/linkedin-circle.imageset/Contents.json -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/message.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Resource/Assets.xcassets/message.imageset/Contents.json -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Resource/Assets.xcassets/message.imageset/icons8-chat-bubble-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Resource/Assets.xcassets/message.imageset/icons8-chat-bubble-50.png -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Search/SearchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Search/SearchView.swift -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Story/LinkedinStory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Story/LinkedinStory.swift -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Story/StoryProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Story/StoryProvider.swift -------------------------------------------------------------------------------- /linkedin-template/linkedin-template/Storyboard/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/linkedin-template/linkedin-template/Storyboard/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /tinder-template/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/.DS_Store -------------------------------------------------------------------------------- /tinder-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/README.md -------------------------------------------------------------------------------- /tinder-template/tinder-template.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template.gif -------------------------------------------------------------------------------- /tinder-template/tinder-template.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tinder-template/tinder-template.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /tinder-template/tinder-template.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /tinder-template/tinder-template.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template.xcodeproj/xcuserdata/arvind.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /tinder-template/tinder-template/AppDelegate/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/AppDelegate/AppDelegate.swift -------------------------------------------------------------------------------- /tinder-template/tinder-template/AppDelegate/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/AppDelegate/SceneDelegate.swift -------------------------------------------------------------------------------- /tinder-template/tinder-template/Components/ButtonComponents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Components/ButtonComponents.swift -------------------------------------------------------------------------------- /tinder-template/tinder-template/Components/ImageComponents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Components/ImageComponents.swift -------------------------------------------------------------------------------- /tinder-template/tinder-template/Components/TextComponents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Components/TextComponents.swift -------------------------------------------------------------------------------- /tinder-template/tinder-template/Config/AppConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Config/AppConfig.swift -------------------------------------------------------------------------------- /tinder-template/tinder-template/ContentView/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/ContentView/ContentView.swift -------------------------------------------------------------------------------- /tinder-template/tinder-template/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Info.plist -------------------------------------------------------------------------------- /tinder-template/tinder-template/Models/ProfileModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Models/ProfileModel.swift -------------------------------------------------------------------------------- /tinder-template/tinder-template/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Resource/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Resource/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/dismiss_circle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Resource/Assets.xcassets/dismiss_circle.imageset/Contents.json -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/dismiss_circle.imageset/dismiss_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Resource/Assets.xcassets/dismiss_circle.imageset/dismiss_circle@2x.png -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/image/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Resource/Assets.xcassets/image/Contents.json -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/image/image1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Resource/Assets.xcassets/image/image1.imageset/Contents.json -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/image/image2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Resource/Assets.xcassets/image/image2.imageset/Contents.json -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/image/image3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Resource/Assets.xcassets/image/image3.imageset/Contents.json -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/image/image4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Resource/Assets.xcassets/image/image4.imageset/Contents.json -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/image/profile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Resource/Assets.xcassets/image/profile.imageset/Contents.json -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/image/profile.imageset/my-profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Resource/Assets.xcassets/like_circle.imageset/Contents.json -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/like_circle.imageset/like_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Resource/Assets.xcassets/rewind_circle.imageset/Contents.json -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/rewind_circle.imageset/refresh_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Resource/Assets.xcassets/super_like_circle.imageset/Contents.json -------------------------------------------------------------------------------- /tinder-template/tinder-template/Resource/Assets.xcassets/super_like_circle.imageset/super_like_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Resource/Assets.xcassets/super_like_circle.imageset/super_like_circle@2x.png -------------------------------------------------------------------------------- /tinder-template/tinder-template/Ripple/Ripple.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Ripple/Ripple.swift -------------------------------------------------------------------------------- /tinder-template/tinder-template/Services/ActionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Services/ActionManager.swift -------------------------------------------------------------------------------- /tinder-template/tinder-template/Services/DependencyContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Services/DependencyContainer.swift -------------------------------------------------------------------------------- /tinder-template/tinder-template/Services/GestureManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Services/GestureManager.swift -------------------------------------------------------------------------------- /tinder-template/tinder-template/StoryBoard/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/StoryBoard/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /tinder-template/tinder-template/ViewModels/MainViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/ViewModels/MainViewModel.swift -------------------------------------------------------------------------------- /tinder-template/tinder-template/ViewModels/UserProfileViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/ViewModels/UserProfileViewModel.swift -------------------------------------------------------------------------------- /tinder-template/tinder-template/Views/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Views/MainView.swift -------------------------------------------------------------------------------- /tinder-template/tinder-template/Views/UserProfileView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arvindcs/SwiftUI-Animation/HEAD/tinder-template/tinder-template/Views/UserProfileView.swift --------------------------------------------------------------------------------