Ionic - Global navigation change event

this works for me in beta 10. Nice for logging (Google Analytics) :slight_smile:

this.nav.viewDidEnter.subscribe((view) => {
    console.log(view.instance.constructor.name);
});

See:
https://github.com/driftyco/ionic/blob/master/src/components/nav/nav-controller.ts#L236

1 Like