---
title: "SweepGradientShader"
description: "Creates a circular gradient that sweeps around a provided center point. The sweep begins relative
to 3 o'clock and continues clockwise until it reaches the starting position again.

If `colorStops` is provided, each value is a number from 0.0 to 1.0 that specifies where the
color at the corresponding index in [colors] begins in the gradient. If `colorStops` is not
provided, then the colors are dispersed evenly"
type: "function"
---

<div class='type'>Function</div>


<a id='references'></a>
<div class='sourceset sourceset-common'>Common</div>


```kotlin
fun SweepGradientShader(
    center: Offset,
    colors: List<Color>,
    colorStops: List<Float>? = null,
): Shader
```


Creates a circular gradient that sweeps around a provided center point. The sweep begins relative
to 3 o'clock and continues clockwise until it reaches the starting position again.

If `colorStops` is provided, each value is a number from 0.0 to 1.0 that specifies where the
color at the corresponding index in `colors` begins in the gradient. If `colorStops` is not
provided, then the colors are dispersed evenly

#### Parameters

| | |
| --- | --- |
| center | Position for the gradient to sweep around |
| colors | Colors to be rendered as part of the gradient |
| colorStops | Placement of the colors along the sweep about the center position |




