pub fn ui_checkbox_simple(ui: &mut Ui, label: &str, checked: bool) -> bool
Simple checkbox (returns true if clicked)
let checked = false; let clicked = ui_checkbox_simple(ui, "Simple", checked);