0
Pass the index of the tab you will change as parameter:
this.navCtrl.setPages([{page: AboutPage, tabIndex: 2}]);
From the destination, take the parameter tabIndex and change the tab:
this.nav.parent.select(tabIndex);
0
1
Pass the index of the tab you will change as parameter:
this.navCtrl.setPages([{page: AboutPage, tabIndex: 2}]);
From the destination, take the parameter tabIndex and change the tab:
this.nav.parent.select(tabIndex);
Browser other questions tagged ionic ionic3
You are not signed in. Login or sign up in order to post.