Hi, I’ve created a Tab Page with the following tabs pages :
HTML :
<ion-tab [root]=“searchrequest” tabIcon=“search” tabindex=“0” [tabsHideOnSubPages]=“true”>
<ion-tab [root]=“community” tabIcon=“chatboxes” tabindex=“1” [tabsHideOnSubPages]=“true”>
<ion-tab [root]=“newrequest” tabIcon=“add-circle” tabindex=“2” [tabsHideOnSubPages]=“true” >
<ion-tab [root]=“userprofile” tabIcon=“person” tabindex=“3” [tabsHideOnSubPages]=“true”>
I set the pages references in the TS file of the Tab Page :
newrequest = NewrequestPage;
userprofile = UserprofilePage;
community = CommunityPage;
searchrequest = SearchrequestPage;
is it possible to change one of those pages ?
like : newrequest = OtherPage ;