pub trait NavigationPageImpl: WidgetImpl {
    // Provided methods
    fn hidden(&self) { ... }
    fn hiding(&self) { ... }
    fn showing(&self) { ... }
    fn shown(&self) { ... }
}
Available on crate feature v1_4 only.

Provided Methods§

source

fn hidden(&self)

Called when the navigation view transition has been completed and the page is fully hidden.

source

fn hiding(&self)

Called when the page starts hiding at the beginning of the navigation view transition.

source

fn showing(&self)

Called when the page shows at the beginning of the navigation view transition.

source

fn shown(&self)

Called when the navigation view transition has been completed and the page is fully shown.

Object Safety§

This trait is not object safe.

Implementors§