ui_checkbox_simple

Function ui_checkbox_simple 

Source
pub fn ui_checkbox_simple(ui: &mut Ui, label: &str, checked: bool) -> bool
Expand description

Simple checkbox (returns true if clicked)

ยงExample

let checked = false;
let clicked = ui_checkbox_simple(ui, "Simple", checked);