I want button1 and button2 to fill ~50% width of the screen, it will be one row, but they are not filled the screen width.
How can I do?
<ion-toolbar position="bottom">
<ion-buttons start>
<button danger outline (click)="resetItems()">
<ion-icon name="create">
Button 1
</ion-icon>
</button>
</ion-buttons>
<ion-buttons end>
<button primary outline>
<ion-icon name="star">
Button 2
</ion-icon>
</button>
</ion-buttons>
</ion-toolbar>