#widgets #slider #egui #double-slider

egui_double_slider

A double slider widget for egui

10 releases (6 breaking)

0.7.0 Mar 24, 2025
0.6.0 Mar 24, 2025
0.5.0 Feb 20, 2025
0.4.0 Feb 9, 2025
0.1.0 Nov 1, 2024

#367 in GUI

Download history 111/week @ 2024-12-20 11/week @ 2024-12-27 13/week @ 2025-01-03 13/week @ 2025-01-10 10/week @ 2025-01-31 136/week @ 2025-02-07 123/week @ 2025-02-14 81/week @ 2025-02-21 60/week @ 2025-02-28 3/week @ 2025-03-07 12/week @ 2025-03-14 218/week @ 2025-03-21 38/week @ 2025-03-28 3/week @ 2025-04-04

272 downloads per month

Apache-2.0

105KB
355 lines

egui Double Slider Widget

crates.io Docs Rust

A double slider widget for the GUI rust library egui.

screenshot

Add double slider along with eframe to your cargo.toml.

eframe = "0.31"
egui_double_slider = "0.7.0"

To run the example:

cargo run --example example

Example code:

use egui_double_slider::DoubleSlider;
use egui;

fn main() {
    egui::__run_test_ui(|ui| {
        ui.add(
            DoubleSlider::new(
                &mut self.slider_val_low_1,
                &mut self.slider_val_high_1,
                10.0..=300.0,
            )
                .width(width)
                .separation_distance(10.0),
        );
    });
}

TODO:

  • better connection to egui ctx style (like the normal Slider widget)

Dependencies

~4.5–9.5MB
~90K SLoC