My footer doesn’t fill the width of the screen in landscape mode (see attached image). How can I make it so that each button will take up one third of the screen width?
My code:
<ion-footer >
<ion-toolbar color="b2">
<ion-segment [(ngModel)]="icons" color= "b02">
<ion-segment-button clear icon-left (click)="gotopreviouspage()">
<ion-icon name="arrow-back"></ion-icon>
</ion-segment-button>
<ion-segment-button clear icon-only class="menu-button" (click)="gototable()">
<ion-icon name="menu"></ion-icon>
</ion-segment-button>
<ion-segment-button clear icon-right (click)="gotonextpage()">
<ion-icon name="arrow-forward"></ion-icon>
</ion-segment-button>
</ion-segment>
