pub trait StyleSheet {
    type Style: Default;

    // Required methods
    fn active(&self, style: &Self::Style, is_selected: bool) -> Appearance;
    fn hovered(&self, style: &Self::Style, is_selected: bool) -> Appearance;
}
Expand description

A set of rules that dictate the style of a radio button.

Required Associated Types§

source

type Style: Default

The supported style of the StyleSheet.

Required Methods§

source

fn active(&self, style: &Self::Style, is_selected: bool) -> Appearance

Produces the active Appearance of a radio button.

source

fn hovered(&self, style: &Self::Style, is_selected: bool) -> Appearance

Produces the hovered Appearance of a radio button.

Implementors§