Trait iced::widget::radio::StyleSheet

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§

type Style: Default

The supported style of the StyleSheet.

Required Methods§

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

Produces the active Appearance of a radio button.

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

Produces the hovered Appearance of a radio button.

Implementors§