Expand description
Sliders let users set a value by moving an indicator.
§Example
use iced::widget::slider;
struct State {
   value: f32,
}
#[derive(Debug, Clone)]
enum Message {
    ValueChanged(f32),
}
fn view(state: &State) -> Element<'_, Message> {
    slider(0.0..=100.0, state.value, Message::ValueChanged).into()
}
fn update(state: &mut State, message: Message) {
    match message {
        Message::ValueChanged(value) => {
            state.value = value;
        }
    }
}Structs§
- Handle
 - The appearance of the handle of a slider.
 - Style
 - The appearance of a slider.
 - Vertical
Slider  - An vertical bar and a handle that selects a single value from a range of values.
 
Enums§
- Handle
Shape  - The shape of the handle of a slider.
 - Rail
Background  - The background color of the rail
 - Status
 - The possible status of a 
Slider.