Ion-tabs overlapping content on android devices

I ran into the same thing with Android. This fixed it for me, by adding this in app.js

.config(function($ionicConfigProvider) {
  $ionicConfigProvider.platform.android.tabs.position("bottom");
 })

Docs explain it better than I can, but android puts tabs by default up top, and ios on bottom, $ionicConfigProvider

1 Like