checkbox

A checkbox can be selected by the user to indicate a true or false state.

@safe
alias checkbox = simpleConstructor!Checkbox

Examples

// Checkbox creates a toggleable button
auto myCheckbox = checkbox();

assert(!myCheckbox.isChecked);

Meta