egui_double_slider 0.2.0

A double slider widget for egui.
Documentation
# egui Double Slider Widget

[![crates.io](https://img.shields.io/crates/v/egui_double_slider.svg)](https://crates.io/crates/egui_double_slider)
[![Docs](https://docs.rs/egui_double_slider/badge.svg)](https://docs.rs/egui_double_slider)
[![Rust](https://github.com/hacknus/egui_double_slider/actions/workflows/rust.yml/badge.svg)](https://github.com/hacknus/egui_double_slider/actions/workflows/rust.yml)

A double slider widget for the GUI rust library [https://github.com/emilk/egui](egui).

![screenshot](screenshot.png)

Add double slider to your `cargo.toml`.

```toml
egui_double_slider = "0.2.0"
```

Example code:

```rust
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:

- [ ] extend for integer, `f64`
- [ ] better connection to egui ctx style (like the normal Slider widget)