Contents

ellipticalGradient(colors:center:startRadiusFraction:endRadiusFraction:)

A radial gradient that draws an ellipse defined by a collection of colors.

Declaration

static func ellipticalGradient(colors: [Color], center: UnitPoint = .center, startRadiusFraction: CGFloat = 0, endRadiusFraction: CGFloat = 0.5) -> EllipticalGradient

Discussion

The gradient maps its coordinate space to the unit space square in which its center and radii are defined, then stretches that square to fill its bounding rect, possibly also stretching the circular gradient to have elliptical contours.

For example, an elliptical gradient used as a background:

.background(.elliptical(colors: [.red, .yellow]))

For information about how to use shape styles, see ShapeStyle.

See Also

Elliptical gradients