pub fn custom_labeled_checkbox<S: Display + 'static>(
checked: impl Fn() -> bool + 'static,
label: impl Fn() -> S + 'static,
custom_check: impl Into<String> + Clone + 'static,
) -> ValueContainer<bool>
Expand description
Renders a checkbox using the a checked
signal and a custom SVG. See also Checkbox::custom_labeled_rw