Skip to content

ItsEthra/egui-dropdown

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

egui-dropdown

Dropdown list for egui.

Installation

[dependencies]
egui-dropdown = "0.10"

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.

About

An actual dropdown list for egui

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages