Slope
Flat is out, so let's make depth easy.
Gradients are coming back in style, so let's party like it's 1989 again.
Use them for backgrounds, use them for UI elements, use them to make yourself happy.
The built in CAGradientLayer
API is overly complex, doesn't work with auto layout, and is very fiddly.
Using Slope is simple.
Simple is better than complex!
Let's build a gradient view like above:
There is no step 2. You now have a UIView
subclass that you can add to your screen.
Let's build the save button above:
We're going to make it a little nicer by adding a highlighting effect when you touch down.
And voilà, a beautiful gradient button with highlighting that you can reuse across your app.
Types of Gradients
There are two current types of gradients, UniformGradient
and PercentageGradient
.
You can create your own as you see fit by conforming to the Gradient
protocol.
- If you want to make a radial gradient, go wild.
- If you want to make a diagonal gradient, that works too.
- If you come up with something creative, contribute to the project!
Installation
You can use CocoaPods to install Slope
by adding it to your Podfile
:
Or install it manually by downloading Gradient.swift
, UniformGradient.swift
, PercentageGradient.swift
, and GradientView.swift
, and dropping them in your project.