You can combine the tab layout (tabs at the bottom) and add a toolbar at the top of each page with several Segment of such components:
<ion-header> <ion-toolbar> <ion-segment [(ngModel)]="topTab" color="secondary"> <ion-segment-button value="camera"> <ion-icon name="camera"></ion-icon> </ion-segment-button> <ion-segment-button value="bookmark"> <ion-icon name="bookmark"></ion-icon> </ion-segment-button> </ion-segment> </ion-toolbar> </ion-header>
This way, you will have tabs at the bottom (tab component) and tabs at the top (segment header). I donβt know if this makes sense in the context of your application, but from the point of view of the user interface, the result will be very similar to the screenshot provided.
source share