Contents

ellipticalGradient(_:center:startRadiusFraction:endRadiusFraction:)

A radial gradient that draws an ellipse.

Declaration

static func ellipticalGradient(_ gradient: AnyGradient, center: UnitPoint = .center, startRadiusFraction: CGFloat = 0, endRadiusFraction: CGFloat = 0.5) -> some ShapeStyle

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:

ContentView()
    .background(.ellipticalGradient(.red.gradient))

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

See Also

Elliptical gradients