Using the http://ionicframework.com/docs/api/directive/ionTabs/ example, say on the home tab I click on the More Facts button. This takes me to another state in the same tab. Now, say I click on the About tab button. This switches the tab to show the About view. So far so good. Say I add a button on the about page - called reset. Here is my question: when reset is clicked would I be able to change the Home tab such that when the user clicks back on Home it’s showing the original home view and not the More Facts view/state?
Just to elaborate a bit more technically, I understand each tab tracks its own nav history stack. My question is can I clear a particular tab’s nav history stack from another tab? Suspect $ionicHistory comes into play since the doc says it’s the service that tracks those navigation histories. But I am not sure how to get to my desired tab and clear its history…