pub trait CustomNavigationController: 'static {
// Required methods
fn push(&mut self, content: NavigationView);
fn pop(&mut self);
}Expand description
A trait for handling custom navigation actions. For renderers to implement navigation handling.