Tabs at bottom and segment like functionality at top

image

Can anyone suggest any idea how to achieve this feature by not using segment ?

I’m trying achieve something similar … Any luck?

You could try using super-tabs at the top and regular tabs at the bottom or vice versa?

Or, you could try this :

    <ion-tabs tabsPlacement='top'>
         <ion-tab [root]="tab1Root"></ion-tab>
        <ion-tab [root]="tab2Root"></ion-tab>
        <ion-tab [root]="tab3Root"></ion-tab>
   </ion-tabs>
   <ion-tabs tabsPlacement='bottom'>
         <ion-tab [root]="tab4Root"></ion-tab>
        <ion-tab [root]="tab5Root"></ion-tab>
        <ion-tab [root]="tab6Root"></ion-tab>
   </ion-tabs>