12 breaking releases

0.13.0 Feb 7, 2025
0.12.0 Dec 18, 2024
0.11.0 Sep 26, 2024
0.10.0 Jul 11, 2024
0.1.0 Nov 3, 2022

#224 in GUI

Download history 118/week @ 2024-12-23 269/week @ 2024-12-30 369/week @ 2025-01-06 940/week @ 2025-01-13 861/week @ 2025-01-20 594/week @ 2025-01-27 1063/week @ 2025-02-03 766/week @ 2025-02-10 514/week @ 2025-02-17 702/week @ 2025-02-24 609/week @ 2025-03-03 1088/week @ 2025-03-10 901/week @ 2025-03-17 755/week @ 2025-03-24 754/week @ 2025-03-31 801/week @ 2025-04-07

3,338 downloads per month
Used in 7 crates (via talon-gui)

MIT license

27KB
134 lines

egui-dropdown

Dropdown list for egui.

Installation

[dependencies]
egui-dropdown = "0.11"

Usage

// Working example can be found in `examples/dropdown.rs`

ui.add(DropDownBox::from_iter(
    &self.items,
    "test_dropbox",
    &mut self.buf,
    |ui, text| ui.selectable_label(false, text)
));

Naming

Although it's called DropDownBox, technically speaking it should be called ComboBox. But this is what egui uses for its version of the widget so yeah.

Dependencies

~4.5–9.5MB
~90K SLoC