Hello,
I have a scenario where I need to remove some data from the provider when the active tab is clicked.
For example I have a tab with the pages:
Page1-> Page2-> Page3
Now when Im on the Page3 if the active tab is clicked it returns me to the Page1 but nothing fires. I want to fire a function when the active tab is clicked from a child page.
I have tried to use:
<ion-tab [root]="Page1" (ionSelect)="TestCLick()" tabTitle="Home" tabIcon="information-circle"></ion-tab>
but this fires the TestClick() function only when its clicked from Page1.