Crates.io | egui_chip |
lib.rs | egui_chip |
version | 0.2.1 |
created_at | 2025-02-25 06:45:10.484792+00 |
updated_at | 2025-04-16 00:11:09.215871+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,191,304 |
egui
frameworkuse egui_chip::ChipEditBuilder;
let chip_edit = ChipEditBuilder::new(", ")
.unwrap()
.frame(true)
.texts(["hello", "world"])
.build();
cargo run --example simple