OnboardKit alternatives and similar libraries
Based on the "Walkthrough" category.
Alternatively, view OnboardKit alternatives based on common mentions on social networks and blogs.
-
RazzleDazzle
A simple keyframe-based animation framework for iOS, written in Swift. Perfect for scrolling app intros. -
PaperOnboarding
:octocat: PaperOnboarding is a material design UI slider. Swift UI library by @Ramotion -
SwiftyOnboard
A swifty iOS framework that allows developers to create beautiful onboarding experiences.
InfluxDB high-performance time series database

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of OnboardKit or a related project?
README
[OnboardKit](Assets/banner.png)
OnboardKit
Customizable user onboarding for your UIKit app in Swift
Requirements
- Swift 5.0
- Xcode 10
- iOS 11.0+
Installation
Carthage
github "NikolaKirev/OnboardKit"
CocoaPods
use_frameworks!
# Latest release in CocoaPods
pod 'OnboardKit'
# Get the latest on master
pod 'OnboardKit', :git => 'https://github.com/NikolaKirev/OnboardKit.git', :branch => 'master'
Don't forget to import OnboardKit
in the file you intend to use it.
Usage
- Create and populate a bunch of
OnboardPage
instancesswift let page = OnboardPage(title: "Welcome to OnboardKit", imageName: "Onboarding1", description: "OnboardKit helps you add onboarding to your iOS app")
- Create an
OnboardViewController
swift let onboardingViewController = OnboardViewController(pageItems: [pageOne, ...])
- Present the view controller
swift onboardingViewController.presentFrom(self, animated: true)
(use this convenience method to make sure you present it modally)
Customization
[Custom examples](Assets/custom_examples.png)
Customizing Fonts and Colors
You can customize the look of your onboarding by changing the default colors and fonts.
- Initialize an
AppearanceConfiguration
instance with the desired custom style propertiesswift let appearance = AppearanceConfiguration(tintColor: .orange, titleColor: .red, textColor: .white, backgroundColor: .black, imageContentMode: .scaleAspectFit, titleFont: UIFont.boldSystemFont(ofSize: 32.0), textFont: UIFont.boldSystemFont(ofSize: 17.0))
- Pass the
AppearanceConfiguration
instance as a parameter when initialising anOnboardViewController
swift let onboardingVC = OnboardViewController(pageItems: onboardingPages, appearanceConfiguration: appearance)
List of customizable properties:
tintColor
- used for tinting the advance and action buttonstitleColor
- used to set title color (textColor is used if not specified)textColor
- used to set description text colorbackgroundColor
- used to set view background colorimageContentMode
- used to set the content mode of page imageViewstitleFont
- used to set the title font (used for the action button font as well)textFont
- used to set the description text font (used for the advance button font as well)advanceButtonStyling
- a block used to customize the advance buttonactionButtonStyling
- a block used to customize the action button
Customizing Buttons
To customize the style of the advance and action buttons on each page of the onboarding flow, you can use a ButtonStyling
closure.
- Create the closure
swift let advanceButtonStyling: OnboardViewController.ButtonStyling = { button in button.setTitleColor(UIColor.lightGray, for: .normal) button.titleLabel?.font = UIFont.systemFont(ofSize: 16.0, weight: .semibold) }
- Pass the closure in the
AppearanceConfiguration
initializerswift let appearance = OnboardViewController.AppearanceConfiguration(tintColor: .orange, advanceButtonStyling: advanceButtonStyling)
Author
Nikola Kirev
- Website: http://nikolakirev.com
- Twitter: @NikolaKirev
License
OnboardKit is available under the MIT license. See the LICENSE file for more info.
*Note that all licence references and agreements mentioned in the OnboardKit README section above
are relevant to that project's source code only.