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

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

Required Methods

Implementors