iOS 16 Color Gradient API

TIL: iOS 16 has an API that returns the standard gradient for the color self

1
2
3
4
5
6
7
8
9
10
11
HStack {
                Text("Some text")
                    .foregroundStyle(Color.purple)
                    .font(.largeTitle)

                Divider()

                Text("Some text")
                    .foregroundStyle(Color.purple.gradient)
                    .font(.largeTitle)
            }

Color gradient comparison