How to display the Tabs on the bottom in android?

I’m using ionic v2 and I’d like to display my tabs at the bottom of my app. some help plz???

on the app.js type

.config(['$ionicConfigProvider', function($ionicConfigProvider) {

    $ionicConfigProvider.tabs.position('bottom');

}])

// you can put top value instead of bottom if you prefer

Appreciate!! Thank you :+1:

1 Like