How to add an icon in page title bar?

Anyone knows how to add an icon in the page title bar (ionic 1)?

Appreciate your help.

Here’s the Ionic2 way. Hope that helps…

Hi, @adamjeo

This is how you can add icon in your page title bar.

<ion-view title="News" class="tab-page-main">
   <ion-nav-bar class="header-wrap">
       <ion-nav-buttons side="right">
            <i class="ion-ios-search-strong" ></i> <!-- adding icon right side --> 
       </ion-nav-buttons>
   </ion-nav-bar>
   <ion-content>
           ....................
   <ion-content>
</ion-view>

Hope this will solve your issue.

Feel free to mark it as a solution and you can always like the answer by clicking heart icon.