<ion-segment class="SwipedTabs-tabs" >
<ion-segment-button *ngFor='let tab of tabs ; let i = index ' value="IngoreMe" (click)="selectTab(i)"
[ngClass]='{ "SwipedTabs-activeTab" : ( this.SwipedTabsSlider &&this.SwipedTabsSlider.getActiveIndex() === i || ( tabs.length -1 === i&& this.SwipedTabsSlider.isEnd()))) }' >
{{tab}}
</ion-segment-button>
</ion-segment>
I have a 4 pages and i have to put this page inside this instead of the tabs and pages is >
public mainHomePage : any = MainHomePage;
public connectionPage : any = ConnectionPage ;
public chatPage : any = ChatPage;
public sharePage : any = SharePage;
i have add this page in this above tabs how to dot this?