<div class='sourceset sourceset-android'>Android</div>

```kotlin
public object RemoteProgressIndicatorDefaults
```

Contains defaults for Remote Progress Indicators.

## Functions

<h2 id="colors">colors</h2>

```kotlin
@Composable
@RemoteComposable
public fun colors(): RemoteProgressIndicatorColors
```

Creates a [RemoteProgressIndicatorColors](/jetpack-compose/androidx.wear.compose.remote/remote-material3/classes/RemoteProgressIndicatorColors) with the default colors.

<hr class="docs-overload-divider">

<h2 id="calculaterecommendedgapsize-strokewidth">calculateRecommendedGapSize</h2>

```kotlin
public fun calculateRecommendedGapSize(strokeWidth: RemoteDp): RemoteDp
```

Returns recommended size of the gap based on `strokeWidth`.

<hr class="docs-overload-divider">

<h2 id="colors-indicatorcolor-trackcolor-overflowtrackcolor-disabledindicatorcolor-disabledtrackcolor-disabledoverflowtrackcolor">colors</h2>

```kotlin
@Composable
@RemoteComposable
public fun colors(
    indicatorColor: RemoteColor? = null,
    trackColor: RemoteColor? = null,
    overflowTrackColor: RemoteColor? = null,
    disabledIndicatorColor: RemoteColor? = null,
    disabledTrackColor: RemoteColor? = null,
    disabledOverflowTrackColor: RemoteColor? = null,
): RemoteProgressIndicatorColors
```

Creates a [RemoteProgressIndicatorColors](/jetpack-compose/androidx.wear.compose.remote/remote-material3/classes/RemoteProgressIndicatorColors) with modified colors.

<hr class="docs-overload-divider">

<h2 id="colors-indicatorbrush-trackbrush-overflowtrackbrush-disabledindicatorbrush-disabledtrackbrush-disabledoverflowtrackbrush">colors</h2>

```kotlin
@Composable
@RemoteComposable
public fun colors(
    indicatorBrush: RemoteBrush? = null,
    trackBrush: RemoteBrush? = null,
    overflowTrackBrush: RemoteBrush? = null,
    disabledIndicatorBrush: RemoteBrush? = null,
    disabledTrackBrush: RemoteBrush? = null,
    disabledOverflowTrackBrush: RemoteBrush? = null,
): RemoteProgressIndicatorColors
```

Creates a [RemoteProgressIndicatorColors](/jetpack-compose/androidx.wear.compose.remote/remote-material3/classes/RemoteProgressIndicatorColors) with modified brushes.