<div class='type'>Composable Component</div>



Range Sliders expand upon `Slider` using the same concepts but allow the user to select 2 values.

<a id='references'></a>



<h2 id="rangeslider-value-onvaluechange-modifier-enabled-valuerange-onvaluechangefinished-colors">RangeSlider</h2>

<div class='sourceset sourceset-common'>Common</div>


```kotlin
@Composable
fun RangeSlider(
    value: ClosedFloatingPointRange<Float>,
    onValueChange: (ClosedFloatingPointRange<Float>) -> Unit,
    modifier: Modifier = Modifier,
    enabled: Boolean = true,
    valueRange: ClosedFloatingPointRange<Float> = 0f..1f,
    @IntRange(from = 0) steps: Int = 0,
    onValueChangeFinished: (() -> Unit)? = null,
    colors: SliderColors = SliderDefaults.colors(),
)
```


#### Parameters

| | |
| --- | --- |
| value | current values of the RangeSlider. If either value is outside of `valueRange` provided, it will be coerced to this range. |
| onValueChange | lambda in which values should be updated |
| modifier | modifiers for the Range Slider layout |
| enabled | whether or not component is enabled and can we interacted with or not |
| valueRange | range of values that Range Slider values can take. Passed `value` will be coerced to this range |
| steps | if positive, specifies the amount of discrete allowable values between the endpoints of `valueRange`. For example, a range from 0 to 10 with 4 `steps` allows 4 values evenly distributed between 0 and 10 (i.e., 2, 4, 6, 8). If `steps` is 0, the slider will behave continuously and allow any value from the range. Must not be negative. |
| onValueChangeFinished | lambda to be invoked when value change has ended. This callback shouldn't be used to update the range slider values (use `onValueChange` for that), but rather to know when the user has completed selecting a new value by ending a drag or a click. |
| colors | `SliderColors` that will be used to determine the color of the Range Slider parts in different state. See `SliderDefaults.colors` to customize. |






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


<h2 id="rangeslider-value-onvaluechange-modifier-enabled-valuerange-onvaluechangefinished-colors-startinteractionsource-endinteractionsource-startthumb-endthumb-track">RangeSlider</h2>

<div class='sourceset sourceset-common'>Common</div>


```kotlin
@Composable
fun RangeSlider(
    value: ClosedFloatingPointRange<Float>,
    onValueChange: (ClosedFloatingPointRange<Float>) -> Unit,
    modifier: Modifier = Modifier,
    enabled: Boolean = true,
    valueRange: ClosedFloatingPointRange<Float> = 0f..1f,
    onValueChangeFinished: (() -> Unit)? = null,
    colors: SliderColors = SliderDefaults.colors(),
    startInteractionSource: MutableInteractionSource = remember { MutableInteractionSource() },
    endInteractionSource: MutableInteractionSource = remember { MutableInteractionSource() },
    startThumb: @Composable (RangeSliderState) -> Unit = {
        SliderDefaults.Thumb(
            interactionSource = startInteractionSource,
            colors = colors,
            enabled = enabled,
        )
    },
    endThumb: @Composable (RangeSliderState) -> Unit = {
        SliderDefaults.Thumb(
            interactionSource = endInteractionSource,
            colors = colors,
            enabled = enabled,
        )
    },
    track: @Composable (RangeSliderState) -> Unit = { rangeSliderState ->
        SliderDefaults.Track(
            colors = colors,
            enabled = enabled,
            rangeSliderState = rangeSliderState,
        )
    },
    @IntRange(from = 0) steps: Int = 0,
)
```


#### Parameters

| | |
| --- | --- |
| value | current values of the RangeSlider. If either value is outside of `valueRange` provided, it will be coerced to this range. |
| onValueChange | lambda in which values should be updated |
| modifier | modifiers for the Range Slider layout |
| enabled | whether or not component is enabled and can we interacted with or not |
| onValueChangeFinished | lambda to be invoked when value change has ended. This callback shouldn't be used to update the range slider values (use `onValueChange` for that), but rather to know when the user has completed selecting a new value by ending a drag or a click. |
| colors | `SliderColors` that will be used to determine the color of the Range Slider parts in different state. See `SliderDefaults.colors` to customize. |
| startInteractionSource | the `MutableInteractionSource` representing the stream of `Interaction`s for the start thumb. You can create and pass in your own `remember`ed instance to observe. |
| endInteractionSource | the `MutableInteractionSource` representing the stream of `Interaction`s for the end thumb. You can create and pass in your own `remember`ed instance to observe. |
| steps | if positive, specifies the amount of discrete allowable values between the endpoints of `valueRange`. For example, a range from 0 to 10 with 4 `steps` allows 4 values evenly distributed between 0 and 10 (i.e., 2, 4, 6, 8). If `steps` is 0, the slider will behave continuously and allow any value from the range. Must not be negative. |
| startThumb | the start thumb to be displayed on the Range Slider. The lambda receives a `RangeSliderState` which is used to obtain the current active track. |
| endThumb | the end thumb to be displayed on the Range Slider. The lambda receives a `RangeSliderState` which is used to obtain the current active track. |
| track | the track to be displayed on the range slider, it is placed underneath the thumb. The lambda receives a `RangeSliderState` which is used to obtain the current active track. |
| valueRange | range of values that Range Slider values can take. Passed `value` will be coerced to this range. |






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


<h2 id="rangeslider-state-modifier-enabled-colors-startinteractionsource-endinteractionsource-startthumb-endthumb-track">RangeSlider</h2>

<div class='sourceset sourceset-common'>Common</div>


```kotlin
@Composable
fun RangeSlider(
    state: RangeSliderState,
    modifier: Modifier = Modifier,
    enabled: Boolean = true,
    colors: SliderColors = SliderDefaults.colors(),
    startInteractionSource: MutableInteractionSource = remember { MutableInteractionSource() },
    endInteractionSource: MutableInteractionSource = remember { MutableInteractionSource() },
    startThumb: @Composable (RangeSliderState) -> Unit = {
        SliderDefaults.Thumb(
            interactionSource = startInteractionSource,
            colors = colors,
            enabled = enabled,
        )
    },
    endThumb: @Composable (RangeSliderState) -> Unit = {
        SliderDefaults.Thumb(
            interactionSource = endInteractionSource,
            colors = colors,
            enabled = enabled,
        )
    },
    track: @Composable (RangeSliderState) -> Unit = { rangeSliderState ->
        SliderDefaults.Track(
            colors = colors,
            enabled = enabled,
            rangeSliderState = rangeSliderState,
        )
    },
)
```


#### Parameters

| | |
| --- | --- |
| state | `RangeSliderState` which contains the current values of the RangeSlider. |
| modifier | modifiers for the Range Slider layout |
| enabled | whether or not component is enabled and can we interacted with or not |
| colors | `SliderColors` that will be used to determine the color of the Range Slider parts in different state. See `SliderDefaults.colors` to customize. |
| startInteractionSource | the `MutableInteractionSource` representing the stream of `Interaction`s for the start thumb. You can create and pass in your own `remember`ed instance to observe. |
| endInteractionSource | the `MutableInteractionSource` representing the stream of `Interaction`s for the end thumb. You can create and pass in your own `remember`ed instance to observe. |
| startThumb | the start thumb to be displayed on the Range Slider. The lambda receives a `RangeSliderState` which is used to obtain the current active track. |
| endThumb | the end thumb to be displayed on the Range Slider. The lambda receives a `RangeSliderState` which is used to obtain the current active track. |
| track | the track to be displayed on the range slider, it is placed underneath the thumb. The lambda receives a `RangeSliderState` which is used to obtain the current active track. |