How to use Font Awesome icons with <ion-tab></ion-tab>
?
What I am trying:
<ion-tabs>
<ion-tab [root]="tab1Root" class="fa fa-calculator" tabTitle="Home" ></ion-tab>
<ion-tab [root]="tab2Root" tabTitle="About" tabIcon="fa-calculator"></ion-tab>
<ion-tab [root]="tab3Root" tabTitle="Contact" tabIcon="contacts"></ion-tab>
</ion-tabs>
Here is my solution to add Font Awesome
<ion-tab></ion-tab>
Note: Make sure you have properly installed font awesome in your ionic project.
your-example.html
your-example.scss
Hope this will solve your problem.