logo
pub trait StyleSheet {
    fn picked_split(&self) -> Option<Line>;
    fn hovered_split(&self) -> Option<Line>;
}
Available on crate feature pure only.
Expand description

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

Required Methods

The Line to draw when a split is picked.

The Line to draw when a split is hovered.

Implementors