SliderTextInputField
fun SliderTextInputField(value: Double, onValueChange: (Double) -> Unit, modifier: Modifier = Modifier, valueRange: ClosedFloatingPointRange<Double> = 0.0..1.0, valueDiff: Double = 1.0, fractionDigits: Int = 2, steps: Int = 0, sliderColors: SliderColors = SliderDefaults.colors())(source)
fun SliderTextInputField(value: Float, onValueChange: (Float) -> Unit, modifier: Modifier = Modifier, valueRange: ClosedFloatingPointRange<Float> = 0f..1f, valueDiff: Float = 1.0f, fractionDigits: Int = 2, steps: Int = 0, sliderColors: SliderColors = SliderDefaults.colors())(source)
Renders the SliderTextInputField UI for the SDAI presentation layer.
Author
Dmitriy Moroz
Parameters
value
value value consumed by the API.
onValueChange
callback invoked by the component.
modifier
Compose modifier applied to the rendered UI.
valueRange
value range value consumed by the API.
valueDiff
value diff value consumed by the API.
fractionDigits
fraction digits value consumed by the API.
steps
steps value consumed by the API.
sliderColors
slider colors value consumed by the API.