egui_chip 0.2.1

compact component to display tags, selections, or actions
Documentation

egui_chip: compact component to display tags, selections, or actions

docs.rs CI Status Crates.io Version Crates.io License Crates.io License

Features

  • Customizable options for appearance
  • Supports moving from one chip to another
  • Supports deleting chip with delete or backspace keys
  • Integration with the egui framework

Example

use egui_chip::ChipEditBuilder;

let chip_edit = ChipEditBuilder::new(", ")
    .unwrap()
    .frame(true)
    .texts(["hello", "world"])
    .build();

Sample app

cargo run --example simple