pub fn SliderField(props: SliderFieldProps) -> impl IntoViewExpand description
A range slider bound to a f64 signal with reactive min, max, and a fixed step,
showing the current value. Emits (value, committed) through on_change, with
committed false during drag and true on release.
§Required Props
- label:
impl Into<String> - value:
Signal<f64> - min:
impl Into<Signal<f64>> - max:
impl Into<Signal<f64>> - on_change:
Callback<(f64, bool)>
§Optional Props
- step:
f64 - disabled:
impl Into<Signal<bool>>