How to add an icon in the upper right corner?

I am starting now with ionic, created my app using this command ($ionic start myApp tabs),

how to add an icon in the upper right corner?

You can add them inside your index.html in the ion-nav-bar

<ion-nav-bar class="bar-stable">
  <ion-nav-buttons side="right">
    <a class="button button-icon icon ion-settings"></a>
  </ion-nav-buttons>
</ion-nav-bar>

Just replace the button with your image or whatever, but that’s the way to go!

1 Like