logo
pub trait StyleSheet {
    fn active(&self, is_checked: bool) -> Style;
    fn hovered(&self, is_checked: bool) -> Style;
}
Expand description

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

Required Methods

Implementors