All Projects → T-Pro → CircularRevealKit

T-Pro / CircularRevealKit

Licence: MIT license
Circular reveal animations made easy

Programming Languages

swift
15916 projects
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to CircularRevealKit

iOSUtilitiesSource
IOS Utilities Library for Swift
Stars: ✭ 46 (+91.67%)
Mutual labels:  swift5
AnyImageKit
A toolbox for pick/edit/capture photo or video. Written in Swift.
Stars: ✭ 580 (+2316.67%)
Mutual labels:  swift5
QuoteKit
A framework to use the free APIs provided by https://quotable.io
Stars: ✭ 17 (-29.17%)
Mutual labels:  swift5
swift-starter-kit
Swift Starter Kit with Firebase & Facebook Login Onboarding
Stars: ✭ 105 (+337.5%)
Mutual labels:  swift5
DailyFeed
iOS client for newsapi.org
Stars: ✭ 128 (+433.33%)
Mutual labels:  swift5
JewelCase
This is the source code for JewelCase, a sample app demonstrating how to use SwiftUI and Firebase together. This slide deck discusses the architecture of the app: https://www.slideshare.net/peterfriese/building-swiftui-apps-with-firebase
Stars: ✭ 42 (+75%)
Mutual labels:  swift5
Windows11
💻 Windows 11 in SwiftUI.
Stars: ✭ 177 (+637.5%)
Mutual labels:  swift5
LeagueAPI
League of Legends API & Data Framework in Swift
Stars: ✭ 50 (+108.33%)
Mutual labels:  swift5
IGListKit-AsyncDisplayKit-Example
IGListKit be used with AsyncDisplayKit in Swift
Stars: ✭ 34 (+41.67%)
Mutual labels:  swift5
GradientAnimator
GradientAnimator helps to fill your view with vibrant gradient theme colours and animates them to give a stunning view to your application design
Stars: ✭ 70 (+191.67%)
Mutual labels:  swift5
OKKLineMin
OKKLineMin kline for min for learning for iPhone (support Swift5 & the latest Swift & iPhone & iOS 16)(min K线图 用于学习了解)
Stars: ✭ 23 (-4.17%)
Mutual labels:  swift5
GPhotos
A wrapper around the Google Photos API.
Stars: ✭ 21 (-12.5%)
Mutual labels:  swift5
STKitSwift
STKitSwift is a collection of useful classes and categories to develop Apps faster.
Stars: ✭ 56 (+133.33%)
Mutual labels:  swift5
WXNavigationBar
Handle UINavigationBar like WeChat. Simple and easy to use.
Stars: ✭ 116 (+383.33%)
Mutual labels:  uinavigationcontroller
JNAPushPopCompletionBlock
Completion Block for UINavigationController Push/Pop UIViewController
Stars: ✭ 40 (+66.67%)
Mutual labels:  uinavigationcontroller
NXNavigationExtension
🔥 Lightweight, simple, and easy-to-use NavigationBar library.
Stars: ✭ 121 (+404.17%)
Mutual labels:  uinavigationcontroller
Pulse
❤️ A heart rate camera pulse detector written in Swift.
Stars: ✭ 53 (+120.83%)
Mutual labels:  swift5
graphique
Experimental GraphQL query builders
Stars: ✭ 24 (+0%)
Mutual labels:  swift5
BottomSheet
A sliding Sheet from the bottom of the Screen with 3 States build with SwiftUI.
Stars: ✭ 597 (+2387.5%)
Mutual labels:  swift5
audioStreamDemo
A music player created in swift using AVPlayer to stream audio from server.
Stars: ✭ 33 (+37.5%)
Mutual labels:  swift5

CircularRevealKit

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 the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].