How to use tabs-bottom in Ionic V1

Asked

Viewed 124 times

0

I’m developing an application in Ionic v1 but I’m not able to put tabs on Botton android, by default on Ios it already comes out in the bottom.

Follow my code and an example image.

inserir a descrição da imagem aqui

<ion-view id="page1">
<ion-tabs class="tabs-royal tabs-icon-bottom" id="tabsController-tabs1">
<ion-tab title="Empreendimentos" icon="ion-map" href="#/page1/page2" 
id="tabsController-tab1">
<ion-nav-view name="tab1"></ion-nav-view>
</ion-tab>
<ion-tab title="Agenda" icon="ion-ios-contact-outline" href="#/page1/page3" 
id="tabsController-tab2">
<ion-nav-view name="tab2"></ion-nav-view>
</ion-tab>
<ion-tab title="Condomínios" icon="ion-android-pin" href="#/page1/page4" 
id="tabsController-tab3">
<ion-nav-view name="tab3"></ion-nav-view>
</ion-tab>
</ion-tabs>
</ion-view>
  • 1

    Ionic v1 is angular or angularJS? If you are Angularjs, check this answer https://stackoverflow.com/a/27915387/1518921 or this one https://stackoverflow.com/a/363311/1518921 if you are Angular (no js) check this answer: https://stackoverflow.com/a/38468355/1518921

  • Thanks for the help William I managed to settle with the links above!

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.