> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mainly.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Slider

> The Slider control is used to select a numeric value from a range.

```
Slider(min=0.0, max=1.0, step=0.1)
```

# Example

```python theme={null}
from mirmod.controls import Slider

@wob.receiver("value", "input", control=Slider(min=0.0, max=100.0, step=1.0))
def receive_input(self, i):
  self.value = float(i)
```

# Parameters

| Name | Type  | Description                                |
| ---- | ----- | ------------------------------------------ |
| min  | float | Minimum value of the slider. Default 0.0.  |
| max  | float | Maximum value of the slider. Default 1.0.  |
| step | float | Step increment of the slider. Default 0.1. |
