Hi,
I’ve noticed that buttons added to the navbar which are meant to show on the left side will not do so in the browser.
They’ll only show up in the correct location given the “lab” switch ionic serve -l for iPhone, but it’ll still fail for Android & Windows (and on an actual phone, they don’t show up on the correct side - the left side).
Does anyone know how to make left-anchored buttons show up correctly?
Here’s sample code that will fail with the command ionic serve
<ion-header>
<ion-navbar>
<ion-title>Buttons In Components</ion-title>
<ion-buttons start>
<button ion-button icon-only item-left>
<ion-icon name='contact'></ion-icon>
</button>
</ion-buttons>
<ion-buttons end>
<button ion-button icon-only>
<ion-icon name='search'></ion-icon>
</button>
</ion-buttons>
</ion-navbar>
</ion-header>
Thanks,
Ryan