labeled_checkbox

Function labeled_checkbox 

Source
pub fn labeled_checkbox<S: Display + 'static>(
    checked: impl Fn() -> bool + 'static,
    label: impl Fn() -> S + 'static,
) -> ValueContainer<bool>
Expand description

Renders a checkbox using the provided checked signal. See also Checkbox::labeled and Checkbox::labeled_rw.