Reputation: 1449
In OrderListModal
page when OrderDetailModal
opens and order accepted I want to go third modal "DeliveryProcessModal
" but in same time two previous modals should be closed. second modal is easy to close but I don't know how to close first modal in navigating process.
Upvotes: 0
Views: 67
Reputation: 24472
You can take advantage of the popToRoot method.
According to Ionic API docs:
Navigate back to the root of the stack, no matter how far back that is.
Use poptoRoot which returns a promise, then push your DeliveryProcessModal
.
this.navCtrl.popToRoot().then(() => {
//Present your modal
});
Upvotes: 1