0
Guys I’m developing an app in Ionic 2 and on the first screen Page1 and executed:
this.app.getRootNav().push(Page2)
My problem is that when user click back button I want you to run the method ionViewDidEnter()
of Page1.
He only performs this method with this.nav.push(Page2)
for example.
I wanted it to work with getRootNav
.
Please, edit your question and provide a minimal, complete and verifiable example.
– NoobSaibot
Ever tried to use
ionViewDidLoad
?– DiegoAugusto