Skip to content
forked from touyu/BlurKit

A lightweight library that can easily blur the view.

License

Notifications You must be signed in to change notification settings

mohsinalimat/BlurKit

 
 

Repository files navigation

A lightweight library that can easily blur the view.

Features

  • Without inheritance
  • Corresponds to UIView, UIImageView, UILabel etc...
  • Adjustable blur condition
  • Lightweight

Usage

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        
        view.bk.addBlur(blurRadius: 0)

        UIView.animate(withDuration: 5) {
            self.view.bk.blurRadius = 5
        }
    }
}
label.bk.addBlur(blurRadius: 3, colorTint: .white, colorTintAlpha: 0.4)
imageView.bk.addBlur(blurRadius: 4, colorTint: .white, colorTintAlpha: 0.2)
view.bk.removeBlur()
view.bk.isBlurHidden = true // or false

Installation

Carthage

Add this to Cartfile

github "touyu/BlurKit" ~> 0.1
$ carthage update --platform iOS

CocoaPods

# Podfile
use_frameworks!

target 'YOUR_TARGET_NAME' do
    pod 'BlurKit',    '~> 0.1'
end
$ pod install

⚠️ Caution

Because BlurKit uses the Private API, please use it carefully.

About

A lightweight library that can easily blur the view.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 56.8%
  • Ruby 36.2%
  • Objective-C 7.0%