11 breaking releases

0.12.0 Dec 18, 2024
0.11.0 Sep 26, 2024
0.10.0 Jul 11, 2024
0.9.0 Mar 27, 2024
0.1.0 Nov 3, 2022

#249 in Text processing

Download history 655/week @ 2024-09-23 408/week @ 2024-09-30 240/week @ 2024-10-07 270/week @ 2024-10-14 358/week @ 2024-10-21 384/week @ 2024-10-28 382/week @ 2024-11-04 166/week @ 2024-11-11 249/week @ 2024-11-18 421/week @ 2024-11-25 311/week @ 2024-12-02 459/week @ 2024-12-09 478/week @ 2024-12-16 118/week @ 2024-12-23 269/week @ 2024-12-30 239/week @ 2025-01-06

1,168 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–9MB
~85K SLoC