I use the Ionic 2/3 auto button when using NavController.
On one of the pages, I want to add a button to the title, which will change something, so I added:
<ion-header> <ion-navbar color="orange"> <ion-title>Test</ion-title> <ion-buttons end> <button ion-button icon-right clear (click)="openModal()"> Next <ion-icon name="arrow-forward"></ion-icon> </button> </ion-buttons> </ion-navbar> </ion-header>
Unfortunately, the size of the icon is slightly different (smaller), and the back button is automatically added by Ionic. I know that I can style it with CSS, but I'm afraid to break something (I cannot check all devices).
Screenshot (Android and iOS):

Maybe I should use different classes or button components? How can I make the size of all buttons and icons in the title the same?
dease source share