egui-dropdown

Crates.ioegui-dropdown
lib.rsegui-dropdown
version0.11.0
sourcesrc
created_at2022-11-03 14:26:08.824962
updated_at2024-09-26 14:39:56.39335
descriptionAn actual dropdown list for egui
homepage
repositoryhttps://github.com/ItsEthra/egui-dropdown
max_upload_size
id704271
size102,084
Ethra (ItsEthra)

documentation

README

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.

Commit count: 36

cargo fmt