├── HeroCarousel.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── sreesairaghava.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── HeroCarousel ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── blue.colorset │ │ └── Contents.json │ ├── green.colorset │ │ └── Contents.json │ └── purple.colorset │ │ └── Contents.json ├── ContentView.swift ├── HeroCarouselApp.swift ├── Info.plist ├── Model │ └── Card.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── View │ ├── CardView.swift │ ├── DetailView.swift │ └── Home.swift └── ViewModel │ └── CarouselViewModel.swift ├── README.md └── test.gif /HeroCarousel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreesairaghava/HeroCarousel/HEAD/HeroCarousel.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HeroCarousel.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreesairaghava/HeroCarousel/HEAD/HeroCarousel.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HeroCarousel.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreesairaghava/HeroCarousel/HEAD/HeroCarousel.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /HeroCarousel.xcodeproj/xcuserdata/sreesairaghava.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreesairaghava/HeroCarousel/HEAD/HeroCarousel.xcodeproj/xcuserdata/sreesairaghava.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /HeroCarousel/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreesairaghava/HeroCarousel/HEAD/HeroCarousel/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /HeroCarousel/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreesairaghava/HeroCarousel/HEAD/HeroCarousel/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HeroCarousel/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreesairaghava/HeroCarousel/HEAD/HeroCarousel/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /HeroCarousel/Assets.xcassets/blue.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreesairaghava/HeroCarousel/HEAD/HeroCarousel/Assets.xcassets/blue.colorset/Contents.json -------------------------------------------------------------------------------- /HeroCarousel/Assets.xcassets/green.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreesairaghava/HeroCarousel/HEAD/HeroCarousel/Assets.xcassets/green.colorset/Contents.json -------------------------------------------------------------------------------- /HeroCarousel/Assets.xcassets/purple.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreesairaghava/HeroCarousel/HEAD/HeroCarousel/Assets.xcassets/purple.colorset/Contents.json -------------------------------------------------------------------------------- /HeroCarousel/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreesairaghava/HeroCarousel/HEAD/HeroCarousel/ContentView.swift -------------------------------------------------------------------------------- /HeroCarousel/HeroCarouselApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreesairaghava/HeroCarousel/HEAD/HeroCarousel/HeroCarouselApp.swift -------------------------------------------------------------------------------- /HeroCarousel/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreesairaghava/HeroCarousel/HEAD/HeroCarousel/Info.plist -------------------------------------------------------------------------------- /HeroCarousel/Model/Card.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreesairaghava/HeroCarousel/HEAD/HeroCarousel/Model/Card.swift -------------------------------------------------------------------------------- /HeroCarousel/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreesairaghava/HeroCarousel/HEAD/HeroCarousel/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /HeroCarousel/View/CardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreesairaghava/HeroCarousel/HEAD/HeroCarousel/View/CardView.swift -------------------------------------------------------------------------------- /HeroCarousel/View/DetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreesairaghava/HeroCarousel/HEAD/HeroCarousel/View/DetailView.swift -------------------------------------------------------------------------------- /HeroCarousel/View/Home.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreesairaghava/HeroCarousel/HEAD/HeroCarousel/View/Home.swift -------------------------------------------------------------------------------- /HeroCarousel/ViewModel/CarouselViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreesairaghava/HeroCarousel/HEAD/HeroCarousel/ViewModel/CarouselViewModel.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreesairaghava/HeroCarousel/HEAD/README.md -------------------------------------------------------------------------------- /test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sreesairaghava/HeroCarousel/HEAD/test.gif --------------------------------------------------------------------------------