🛠️ Fix Slider skips one step

Fixed SliderWithTitle skips one step.
This commit is contained in:
Acclorite 2024-08-15 18:36:16 +03:00
parent 25a730f86b
commit 6797bf03fb

View file

@ -72,7 +72,7 @@ fun SliderWithTitle(
onValueChange = { onValueChange = {
onValueChange(it.roundToInt()) onValueChange(it.roundToInt())
}, },
steps = toValue - fromValue, steps = toValue - fromValue - 1,
colors = SliderDefaults.colors( colors = SliderDefaults.colors(
activeTickColor = MaterialTheme.colorScheme.onPrimary, activeTickColor = MaterialTheme.colorScheme.onPrimary,
inactiveTickColor = MaterialTheme.colorScheme.onSurfaceVariant, inactiveTickColor = MaterialTheme.colorScheme.onSurfaceVariant,