Trait cosmic::widget::text_input::StyleSheet

source ·
pub trait StyleSheet {
    type Style: Default;

    // Required methods
    fn active(&self, style: &Self::Style) -> Appearance;
    fn error(&self, style: &Self::Style) -> Appearance;
    fn focused(&self, style: &Self::Style) -> Appearance;
    fn disabled(&self, style: &Self::Style) -> Appearance;

    // Provided method
    fn hovered(&self, style: &Self::Style) -> Appearance { ... }
}
Expand description

A set of rules that dictate the style of a text input.

Required Associated Types§

source

type Style: Default

The supported style of the StyleSheet.

Required Methods§

source

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

Produces the style of an active text input.

source

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

Produces the style of an errored text input.

source

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

Produces the style of a focused text input.

source

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

Produces the style of a disabled text input.

Provided Methods§

source

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

Produces the style of an hovered text input.

Implementors§