| Crates.io | egui_chip |
| lib.rs | egui_chip |
| version | 0.3.1 |
| created_at | 2025-02-25 06:45:10.484792+00 |
| updated_at | 2025-11-16 22:58:35.60087+00 |
| description | compact component to display tags, selections, or actions |
| homepage | https://github.com/vauradkar/egui_chip |
| repository | https://github.com/vauradkar/egui_chip |
| max_upload_size | |
| id | 1568773 |
| size | 3,199,464 |
egui frameworkuse egui_chip::ChipEditBuilder;
let chip_edit = ChipEditBuilder::new(", ")
.unwrap()
.frame(true)
.texts(["hello", "world"])
.build();
cargo run --example simple