Ramotion
paper-onboarding
Swift

:octocat: PaperOnboarding is a material design UI slider. Swift UI library by @Ramotion

Last updated Jul 3, 2026
3.3k
Stars
332
Forks
9
Issues
0
Stars/day
Attention Score
75
Language breakdown
No language data available.
โ–ธ Files click to expand
README

PAPER ONBOARDING

iOS library Paper Onboarding is a material design UI slider written on Swift.


We specialize in the designing and coding of custom UI for Mobile Apps and Websites.

Stay tuned for the latest updates:

Get Free Mockup For your project โ†’


Twitter CocoaPods CocoaPods Carthage compatible Travis codebeat badge Donate

Requirements

  • iOS 10.0+
  • Xcode 10.2

Installation

Just add the Source folder to your project.

or use CocoaPods with Podfile:

ruby
pod 'paper-onboarding'

or Carthage users can simply add to their Cartfile:

github "Ramotion/paper-onboarding"

or Swift Package Manager by adding:

dependencies: [ .package(url: "https://github.com/Ramotion/paper-onboarding.git", from: "6.1.4") ]
to Package.swift

Usage

Storyboard

1) Create a new UIView inheriting from

2) Set dataSource in attribute inspector

or Code

swift
override func viewDidLoad() {
  super.viewDidLoad()

let onboarding = PaperOnboarding() onboarding.dataSource = self onboarding.translatesAutoresizingMaskIntoConstraints = false view.addSubview(onboarding)

// add constraints for attribute: NSLayoutAttribute in [.Left, .Right, .Top, .Bottom] { let constraint = NSLayoutConstraint(item: onboarding, attribute: attribute, relatedBy: .Equal, toItem: view, attribute: attribute, multiplier: 1, constant: 0) view.addConstraint(constraint) } }

For adding content use dataSource methods:

swift
  func onboardingItem(at index: Int) -> OnboardingItemInfo {

return [ OnboardingItemInfo(informationImage: IMAGE, title: "title", description: "description", pageIcon: IMAGE, color: UIColor.RANDOM, titleColor: UIColor.RANDOM, descriptionColor: UIColor.RANDOM, titleFont: UIFont.FONT, descriptionFont: UIFont.FONT),

OnboardingItemInfo(informationImage: IMAGE, title: "title", description: "description", pageIcon: IMAGE, color: UIColor.RANDOM, titleColor: UIColor.RANDOM, descriptionColor: UIColor.RANDOM, titleFont: UIFont.FONT, descriptionFont: UIFont.FONT),

OnboardingItemInfo(informationImage: IMAGE, title: "title", description: "description", pageIcon: IMAGE, color: UIColor.RANDOM, titleColor: UIColor.RANDOM, descriptionColor: UIColor.RANDOM, titleFont: UIFont.FONT, descriptionFont: UIFont.FONT) ][index] }

func onboardingItemsCount() -> Int { return 3 }

configuring content item:

swift
func onboardingConfigurationItem(item: OnboardingContentViewItem, index: Int) {

// item.titleLabel?.backgroundColor = .redColor() // item.descriptionLabel?.backgroundColor = .redColor() // item.imageView = ... }

๐Ÿ—‚ Check this library on other language:

๐Ÿ“„ License

Paper Onboarding is released under the MIT license. See LICENSE for details.

This library is a part of a selection of our best UI open-source projects.

If you use the open-source library in your project, please make sure to credit and backlink to www.ramotion.com

๐Ÿ“ฑ Get the Showroom App for iOS to give it a try

Try this UI component and more like this in our iOS app. Contact us if interested.



ยฉ 2026 GitRepoTrend ยท Ramotion/paper-onboarding ยท Updated daily from GitHub