Anyone can put the nav to bottom please!

I downloaded the tab without changes,but the nav on pc like this

.any one knows how to put the nav to bottom.thanks!

Try with:

MyApp.config(['$ionicConfigProvider', function($ionicConfigProvider) {
         $ionicConfigProvider.tabs.position('bottom'); //other values: top
}]);

http://ionicframework.com/docs/nightly/api/provider/%24ionicConfigProvider/

Ps.: use beta 14 or higher

You can try add tabs-bottom to ion-tabs too.

<ion-tabs class="tabs-icon-top tabs-positive tabs-bottom"> </ion-tabs>

It works ,thank you so much,xiexie

Yeah, this is done on purpose to follow googles design guidelines.