Popularity
1.3
Stable
Activity
0.0
Stable
25
6
7

Programming language: Swift
License: MIT License
Tags: Animation     UI    
Latest version: v0.9.6

CircularRevealKit alternatives and similar libraries

Based on the "Animation" category.
Alternatively, view CircularRevealKit alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of CircularRevealKit or a related project?

Add another 'Animation' Library

README

[[CircularRevealKit](./Art/CircularRevealKit.png)](#)

CI Status Version License Platform Carthage Compatible Swift 5

This library was created to allow developers to implement the material design's reveal effect. You can simply use this component to reveal and unvereal a ViewController/View, this component is very small (approx. 40kb), written purely in Swift 5 with support of Swift 4.2.

Sample

GIF sample

Requirements

Swift 4 and iOS 9+

Installation

CocoaPods

CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:

$ gem install cocoapods

To integrate CircularRevealKit into your Xcode project using CocoaPods, specify it in your Podfile:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!

target '<Your Target Name>' do
pod 'CircularRevealKit', '~> 0.9.6'
end

Then, run the following command:

$ pod install

Carthage

Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.

You can install Carthage with Homebrew using the following command:

$ brew update
$ brew install carthage

To integrate CircularRevealKit into your Xcode project using Carthage, specify it in your Cartfile:

github "T-Pro/CircularRevealKit" ~> 0.9.6

Run carthage update to build the framework and drag the built CircularRevealKit.framework into your Xcode project.

How to

You can simply import the library using import CircularRevealKit, then:

To push your view controller, use:

radialPresent(viewController: viewController)

or

radialPresent(viewController: viewController, duration, startFrame, revealType, completionBlock?)

To close it:

radialDismiss()

To use with view:

view.drawAnimatedCircularMask(startFrame, duration, revealType, completionBlock?)

To include a fade color between the transition, use the fadeColor:` option when presenting or dismisssing the view controller or view.

radialPresent(viewController: viewController, fadeColor: UIColor.blue)

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Author

Pedro Paulo de Amorim

Based on:

License

CircularRevealKit is available under the MIT license. See the LICENSE file for more info.


*Note that all licence references and agreements mentioned in the CircularRevealKit README section above are relevant to that project's source code only.