Hello !
I don’t understand one thing with tabs.
I create a dynamic tabs and put a rootParams.
<ion-tabs>
<ion-tab *ngFor="let journee of journees" tabTitle="{{journee.date}}" [root]="rootDetail" [rootParams]="journee"></ion-tab>
</ion-tabs>
When I click the first time on tab, the parameters are send.
My problem is when I click on the active tab. The parameters sent are empty so the data on my page are missing.
I don’t understand this behavior.
Did I misread the documentation ?
Thanks.