Trait iced::widget::radio::StyleSheet

pub trait StyleSheet {
    type Style: Default;

    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

The supported style of the StyleSheet.

Required Methods

Produces the active Appearance of a radio button.

Produces the hovered Appearance of a radio button.

Implementors