简体   繁体   中英

Ionic tabs icon not showing

I can't show my feed tab icon:

myapp/src/app/tabs/tabs.page.html

<ion-tab-button tab="tab1">
  <ion-icon name="triangle"></ion-icon>
  <ion-label>Tab 1</ion-label>
</ion-tab-button>

<ion-tab-button tab="tab2">
  <ion-icon name="ellipse"></ion-icon>
  <ion-label>Tab 2</ion-label>
</ion-tab-button>

<ion-tab-button tab="tab3">
  <ion-icon name="square"></ion-icon>
  <ion-label>Tab 3</ion-label>
</ion-tab-button>

<ion-tab-button tab="feed">
   <ion-icon ios="ios-alert" md="md-alert"></ion-icon>
  <ion-label>Feed</ion-label>
</ion-tab-button>

http://i.stack.imgur.com/PHlmT.jpg

But if i try square, ellipse or triangle like the others tabs work:

myapp/src/app/tabs/tabs.page.html

<ion-tab-button tab="tab1">
  <ion-icon name="triangle"></ion-icon>
  <ion-label>Tab 1</ion-label>
</ion-tab-button>

<ion-tab-button tab="tab2">
  <ion-icon name="ellipse"></ion-icon>
  <ion-label>Tab 2</ion-label>
</ion-tab-button>

<ion-tab-button tab="tab3">
  <ion-icon name="square"></ion-icon>
  <ion-label>Tab 3</ion-label>
</ion-tab-button>

<ion-tab-button tab="feed">
  <ion-icon name="triangle"></ion-icon>
  <ion-label>Feed</ion-label>
</ion-tab-button>

http://i.stack.imgur.com/PHlmT.jpg

My github project

in ionic 5 md and ios not working.use this icon

 <ion-icon name="alert-circle-outline"></ion-icon>

and for future Reference it's official ionic 5 doc here

https://ionicframework.com/blog/announcing-ionic-5/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM