I'm developing an application in Ionic 2 and the first screen Page1 and I run:
this.app.getRootNav().push(Page2)
My problem is that when I click the back button I want to execute the ionViewDidEnter()
method of Page1 .
It only executes this method with this.nav.push(Page2)
for example.
I wanted it to work with getRootNav
.