I use tabs as main navigation. I have the following HTML
<ion-tabs class="tabs-icon-top tabs-color-active-positive">
<!-- Home Tab -->
<ion-tab title="Home" icon-off="ion-ios-home-outline" icon-on="ion-ios-home" href="#/tab/home">
<ion-nav-view name="tab-home"></ion-nav-view>
</ion-tab>
<!-- what if I want to add 9 more tabs here? -->
</ion-tabs>
What if I want to have 10 tabs? Then I want the default iOS behaviour, which is to show 4 first tabs, a “More” tab, which upon click, shows the rest of the tabs in a list.
Is this possible in ionic?