CheckBox
Created by: BojanKogoj
Create a CheckBox widget
Example usage:
let cb = CheckBox::new();
cb
.text("Start with Sunday")
.checked(true) // Default false
.checkbox_right(true) // For right side example, default false
.on_checked_changed(... {
});
Detailed UI
HTML example (non interactive) of the above picture