Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/redbooth/SimplePagedView

A UIPageViewController replacement built to be as simple as possible
https://github.com/redbooth/SimplePagedView

ios swift swift4 uikit uipageviewcontroller

Last synced: about 2 months ago
JSON representation

A UIPageViewController replacement built to be as simple as possible

Awesome Lists containing this project

README

        

# SimplePagedView

SimplePagedView is an iOS component that makes it as easy as possible to set up a page view for things like onboarding or presenting information.

simulator screen shot - iphone 8 - 2018-12-12 at 12 54 46

## Installation

```ruby
pod 'SimplePagedView'
```

## Usage

### Programmatic setup
```swift
// Create a PagedViewController by providing it with a view for each page you'd like it to contain
let simplePagedView = SimplePagedView(with:
LogoView(presenter: welcomePresenter),
CardPageView(image: ThemeManager.Images.welcomeTourSlide1,
subtitle: "Complete and resolve tasks on the go"),
CardPageView(image: ThemeManager.Images.welcomeTourSlide2,
subtitle: "Comment on tasks and conversations"),
CardPageView(image: ThemeManager.Images.welcomeTourSlide3,
subtitle: "Add files and pictures in seconds")
)

// Add as subview and setup constraints/frame
```