Show tabs at bottom on android in Ionic
10:38 PM
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
}])
0 comments