rangeSemantics
Android
Modifier in Wear Material 3 Compose
Modifier to add semantics signifying progress of the Stepper/Slider.
Last updated:
Installation
dependencies {
implementation("androidx.wear.compose:compose-material3:1.0.0-alpha27")
}
Overloads
fun Modifier.rangeSemantics(
value: Float,
enabled: Boolean,
onValueChange: (Float) -> Unit,
valueRange: ClosedFloatingPointRange<Float>,
steps: Int
): Modifier
Parameters
name | description |
---|---|
value | Current value of the ProgressIndicator/Slider. If outside of [valueRange] provided, value will be coerced to this range. Must not be NaN. |
enabled | If false then semantics will not be added. |
onValueChange | Lambda which updates [value]. |
valueRange | Range of values that value can take. Passed [value] will be coerced to this range. |
steps | If greater than 0, specifies the amounts of discrete values, evenly distributed between across the whole value range. If 0, any value from the range specified is allowed. Must not be negative. |