@simonioannides wrote:
Hello i want to create a font-awesome icons tabs.
I did this
home.ts
import { UploadPage } from ‘…/upload/upload’;
@Component({ selector: “page-home”, templateUrl: “home.html” })
export class HomePage {
tab4Root = SearchPage;
tab5Root = UploadPage;home.html
<ion-tab [root]="tab4Root" tabIcon="search"> </ion-tab>
<ion-tab [root]=“tab5Root” tabIcon=“upload”>
I have two problems.
the search icon appears as wanted but the Upload icon doesn’t appear (f093). Do i need to update anything.
I change the Upload icon to something else e.g. <ion-tab [root]=“tab4Root” tabIcon=“woman”>
and the woman icon appears. I create a value on the main.css file to show the Upload icon but the value dissapears when i hit reload. any idea why is that?
Posts: 1
Participants: 1