logo
pub trait StatefulWidget {
    type Out;

    fn create_state(&self) -> Box<dyn State<Self::Out>>;
}

Required Associated Types

Required Methods

Implementors