Trait cosmic::widget::rectangle_tracker::StyleSheet

source ·
pub trait StyleSheet {
    type Style: Default;

    // Required method
    fn appearance(&self, style: &Self::Style) -> Appearance;
}
Expand description

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

Required Associated Types§

source

type Style: Default

The supported style of the StyleSheet.

Required Methods§

source

fn appearance(&self, style: &Self::Style) -> Appearance

Produces the Appearance of a container.

Implementors§

source§

impl StyleSheet for cosmic::iced_winit::style::Theme

source§

impl StyleSheet for cosmic::Theme

source§

impl<T> StyleSheet for T
where T: Fn(&Theme) -> Appearance,

§

type Style = Theme