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

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

Required Methods

Produces the style of an active slider.

Produces the style of an hovered slider.

Produces the style of a slider that is being dragged.

Implementors