SwiftUI gives us four kinds of gradients to work with, and like colors most of them are also views that can be drawn in our UI.
Gradients are made up of several components:
For example, a linear gradient goes in one direction, so we provide it with a start and end point like this:
LinearGradient(colors: [.white, .black], startPoint: .top, endPoint: .bottom)
We can also provide that with gradient stops, which let you specify both a color and how far along the gradient the color should be used. For example, we could specify that our gradient should be white from the start up to 45% of the available space, then black from 55% of the available space onwards:
LinearGradient(stops: [
Gradient.Stop(color: .white, location: 0.45),
Gradient.Stop(color: .black, location: 0.55),
], startPoint: .top, endPoint: .bottom)
That will create a much sharper gradient – it will be compressed into a small space in the center.
Tip: Swift knows we’re creating gradient stops here, so as a shortcut we can just write .init
rather than Gradient.Stop
, like this:
LinearGradient(stops: [
.init(color: .white, location: 0.45),
.init(color: .black, location: 0.55),
], startPoint: .top, endPoint: .bottom)
As an alternative, radial gradients move outward in a circle shape, so instead of specifying a direction we specify a start and end radius – how far from the center of the circle the color should start and stop changing. For example:
RadialGradient(colors: [.blue, .black], center: .center, startRadius: 20, endRadius: 200)
The last gradient that's also a view is called an angular gradient, although you might have heard it referred to elsewhere as a conic or conical gradient. This cycles colors around a circle rather than radiating outward, and can create some beautiful effects.
For example, this cycles through a range of colors in a single gradient, centered on the middle of the gradient:
AngularGradient(colors: [.red, .yellow, .green, .blue, .purple, .red], center: .center)
All of these gradient types can have stops provided rather than simple colors. Plus, they can also work as standalone views in your layouts, or be used as part of a modifier – you can use them as the background for a text view, for example.
SwiftUI provides a fourth type of gradient that's simpler than these first three – you don't get any control over it, and you also can use them only as backgrounds and foreground styles rather than individual views.
This gradient is created by simply adding .gradient
after any color – SwiftUI will automatically convert your color into a very gentle linear gradient. Try it like this:
Text("Your content")
.frame(maxWidth: .infinity, maxHeight: .infinity)
.foregroundStyle(.white)
.background(.red.gradient)
This kind of gradient is so subtle, but it can really help elevate your design with almost no work – you'll see I use these a lot!
SPONSORED Take the pain out of configuring and testing your paywalls. RevenueCat's Paywalls allow you to remotely configure and A/B test your entire paywall UI without any code changes or app updates.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.