Popularity
0.7
Stable
Activity
0.0
Stable
14
2
2

Programming language: Swift
License: Apache License 2.0
Tags: UI    

Shades alternatives and similar libraries

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

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

Add another 'UI' Library

README

Logo Easily add drop shadows, borders, rounded corners to a UIView.

Build Status CocoaPods

Installation

CocoaPods

Add the follwing to your Podfile:

pod 'Shades'

Usage

Storyboard

You can add borders, shadows, and corners via the Xcode Storyboard Editor.

Simply set the custom class of a UIView to ShadesView

You can then customize the shades settings:

Storyboard

Alternatively, you can configure a ShadesView from Swift code directly:

shadeView.cornerRadius = 30
shadeView.borderWidth = 5
shadeView.borderColor = UIColor.lightGray
shadeView.shadowColor = UIColor.black
shadeView.shadowOffset = CGSize(width: 5, height: 5)
shadeView.shadowRadius = 3
shadeView.shadowOpacity = 0.8

Would produce:

Example

TO-DO:

  • [ ] Support more UIKit types.