[][src]Module imgui_ext::bullet

bullet(...) docs.

Used to build bulleted lists. It has two variants:

  • bullet(text = "...") Bullet text.
  • bullet(...) bullet widget.

Example

#[derive(imgui_ext::Gui)]
struct Bullet {
    #[imgui(
        bullet(text = "Be nice to others."),
        bullet(text = "Don't repeat your password"),
        bullet(text = "Kill all humans."),
        bullet(slider(min = 0.0, max = 1.0))
    )]
    foo: f32,
}

Result

]result