Skip to main content

application

Function application 

Source
pub fn application<State, Message, Theme, Renderer>(
    boot: impl BootFn<State, Message>,
    update: impl UpdateFn<State, Message>,
    view: impl for<'a> ViewFn<'a, State, Message, Theme, Renderer>,
) -> Application<impl Program<Message = Message, Theme = Theme, State = State>>
where State: 'static, Message: 'static + TryInto<UnLockAction, Error = Message> + Send + Debug, Theme: DefaultStyle, Renderer: Renderer,
Expand description

The renderer of iced program.