├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── IntroKit │ ├── IntroKit.swift │ ├── ViewModels │ └── HapticManager.swift │ └── Views │ └── Onboarding │ └── PurposeView.swift └── Tests └── IntroKitTests └── IntroKitTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasInk/IntroKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasInk/IntroKit/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasInk/IntroKit/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasInk/IntroKit/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasInk/IntroKit/HEAD/README.md -------------------------------------------------------------------------------- /Sources/IntroKit/IntroKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasInk/IntroKit/HEAD/Sources/IntroKit/IntroKit.swift -------------------------------------------------------------------------------- /Sources/IntroKit/ViewModels/HapticManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasInk/IntroKit/HEAD/Sources/IntroKit/ViewModels/HapticManager.swift -------------------------------------------------------------------------------- /Sources/IntroKit/Views/Onboarding/PurposeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasInk/IntroKit/HEAD/Sources/IntroKit/Views/Onboarding/PurposeView.swift -------------------------------------------------------------------------------- /Tests/IntroKitTests/IntroKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreasInk/IntroKit/HEAD/Tests/IntroKitTests/IntroKitTests.swift --------------------------------------------------------------------------------