logo
pub trait AppBarExt: 'static {
Show 14 methods fn stack(&self) -> Option<Stack>; fn set_stack(&self, value: &Stack); fn is_flat(&self) -> bool; fn set_flat(&self, value: bool); fn shows_buttons(&self) -> bool; fn set_show_buttons(&self, value: bool); fn shows_back(&self) -> bool; fn set_show_back(&self, value: bool); fn append(&self, child: &impl IsA<Widget>); fn remove(&self, child: &impl IsA<Widget>); fn connect_stack_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_flat_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_show_buttons_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_show_back_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}
Expand description

Trait containing all AppBar methods.

Implementors

AppBar

Required Methods

Implementors