logo
pub trait StyleSheet {
    fn active(&self, is_checked: bool) -> Style;
    fn hovered(&self, is_checked: bool) -> Style;
}
Available on crate feature pure only.
Expand description

A set of rules that dictate the style of a checkbox.

Required Methods

Implementors