Hi
I have a nabber with two buttons (logout and toggle menu) , however I was able to show the logout button in the correct position but couldn’t show the other button at all !
here is my code :
<ion-navbar>
<ion-buttons end>
<button ion-button icon-only menuToggle style="color: blueviolet;" (click)="showMenu()">
<ion-icon name="menu"></ion-icon>
</button>
</ion-buttons>
<ion-buttons start>
<button ion-button color="danger" style="color:aliceblue; background-color: red;" (click)="logout()">
logout
</button>
</ion-buttons>
</ion-navbar>
ant ideas guys ?