I want to embed a button in the navbar in the same style as the back button/menu toggle. Embedded, no border, icon only; that sort of thing. It works fine online but on android devices (huawei Android: 6.0, moto-g Android: 7.0) it’s styled like a regular button.
<ion-navbar no-border>
<button ion-button>
<ion-icon name="arrow-dropdown"></ion-icon>
</button>
<ion-title>{{title}}</ion-title>
</ion-navbar>
The top image shows how it looks on the phones. The bottom image is how it looks with menuToggle added to the button element.