├── .gitignore ├── CheckmarkDemo.xcodeproj └── project.pbxproj ├── CheckmarkDemo ├── Bootstrap │ └── AppDelegate.swift ├── Controllers │ ├── OnboardingFlowController.swift │ └── StepController.swift ├── Resources │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Checkmark.dataset │ │ │ ├── Checkmark.caar │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist ├── Support │ └── AnimationArchive.swift └── Views │ └── AnimationView.swift ├── Design ├── Checkmark.caar ├── Checkmark.kite │ ├── Data │ │ └── Canvas-1 │ └── Info.json └── Checkmark.sketch ├── LICENSE ├── README.md └── screenshot.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/CheckmarkDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /CheckmarkDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/CheckmarkDemo/HEAD/CheckmarkDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CheckmarkDemo/Bootstrap/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/CheckmarkDemo/HEAD/CheckmarkDemo/Bootstrap/AppDelegate.swift -------------------------------------------------------------------------------- /CheckmarkDemo/Controllers/OnboardingFlowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/CheckmarkDemo/HEAD/CheckmarkDemo/Controllers/OnboardingFlowController.swift -------------------------------------------------------------------------------- /CheckmarkDemo/Controllers/StepController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/CheckmarkDemo/HEAD/CheckmarkDemo/Controllers/StepController.swift -------------------------------------------------------------------------------- /CheckmarkDemo/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/CheckmarkDemo/HEAD/CheckmarkDemo/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CheckmarkDemo/Resources/Assets.xcassets/Checkmark.dataset/Checkmark.caar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/CheckmarkDemo/HEAD/CheckmarkDemo/Resources/Assets.xcassets/Checkmark.dataset/Checkmark.caar -------------------------------------------------------------------------------- /CheckmarkDemo/Resources/Assets.xcassets/Checkmark.dataset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/CheckmarkDemo/HEAD/CheckmarkDemo/Resources/Assets.xcassets/Checkmark.dataset/Contents.json -------------------------------------------------------------------------------- /CheckmarkDemo/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/CheckmarkDemo/HEAD/CheckmarkDemo/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CheckmarkDemo/Resources/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/CheckmarkDemo/HEAD/CheckmarkDemo/Resources/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CheckmarkDemo/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/CheckmarkDemo/HEAD/CheckmarkDemo/Resources/Info.plist -------------------------------------------------------------------------------- /CheckmarkDemo/Support/AnimationArchive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/CheckmarkDemo/HEAD/CheckmarkDemo/Support/AnimationArchive.swift -------------------------------------------------------------------------------- /CheckmarkDemo/Views/AnimationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/CheckmarkDemo/HEAD/CheckmarkDemo/Views/AnimationView.swift -------------------------------------------------------------------------------- /Design/Checkmark.caar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/CheckmarkDemo/HEAD/Design/Checkmark.caar -------------------------------------------------------------------------------- /Design/Checkmark.kite/Data/Canvas-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/CheckmarkDemo/HEAD/Design/Checkmark.kite/Data/Canvas-1 -------------------------------------------------------------------------------- /Design/Checkmark.kite/Info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/CheckmarkDemo/HEAD/Design/Checkmark.kite/Info.json -------------------------------------------------------------------------------- /Design/Checkmark.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/CheckmarkDemo/HEAD/Design/Checkmark.sketch -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/CheckmarkDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/CheckmarkDemo/HEAD/README.md -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/CheckmarkDemo/HEAD/screenshot.jpg --------------------------------------------------------------------------------