Hello!
I have a tab navigation like this:
<ion-tabs class="tabs-icon-only" ng-controller="TabsCtrl">
<ion-tab title="Dashboard" ... href="#/tab/dashboard">
<ion-nav-view name="view-dashboard"></ion-nav-view>
</ion-tab>
<ion-tab title="Customers" ... href="#/tab/customers" >
<ion-nav-view name="view-customers"></ion-nav-view>
</ion-tab>
....
</ion-tabs>
On iOS is correctly positioned at bottom of the page. How can position it on top for Android? I have to duplicate all the project and change the code? Or i can add an “if” to switch the tab style depending on the platform?
Thanks!