Pages

Wednesday, December 9, 2015

Show tabs at bottom on android in Ionic

When you'll create a new project with ionic tabs then the tabs for android will show at top of the page by default, however on IOS these are show at bottom  so if you want tab on bottom on android also then modify you app.js as below:



function($ionicConfigProvider) {

 $ionicConfigProvider.tabs.position('bottom');
//other values: top

}])

No comments:

Post a Comment