Hello, I want to do the alignment of 3 elements (IONIC) inside an ion-navbar but I do not know how to position the elements correctly, could anyone help me? Below is the code snippet along with the image, I want to put one element in front of the other, ie first the toggle button, followed by the query bar and finally the shopping cart button.
<ion-header>
<ion-navbar>
<button ion-button menuToggle >
<ion-icon name="menu"></ion-icon>
</button>
<ion-searchbar
[(ngModel)]="descricao"
(ionInput)="showVitrine()"
(ionCancel)="showVitrine()">
</ion-searchbar>
<button ion-fab mini end><ion-icon name="ios-cart-outline"></ion-icon></button>
</ion-navbar>
</ion-header>