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

#230 in Text processing

Download history 295/week @ 2024-11-20 426/week @ 2024-11-27 283/week @ 2024-12-04 551/week @ 2024-12-11 394/week @ 2024-12-18 131/week @ 2024-12-25 277/week @ 2025-01-01 558/week @ 2025-01-08 892/week @ 2025-01-15 821/week @ 2025-01-22 734/week @ 2025-01-29 943/week @ 2025-02-05 706/week @ 2025-02-12 531/week @ 2025-02-19 754/week @ 2025-02-26 657/week @ 2025-03-05

2,772 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.


lib.rs:

egui-dropdown

Dependencies

~4.5–9.5MB
~90K SLoC