Hi! In previous version I could see the title in android app centered, but after update Ionic to last version and I changed the deprecated tag for title to view-title the title appears at left in bar in android but still ok in Ios.
Any can help me to fix it? Is possibly to change it? Sorry for my english :S
Thanks!
You may want to add this line in your config method
to force Android to get the same effect of iOS:
$ionicConfigProvider.tabs.style('ios');
The config you should use to center the title is:
$ionicConfigProvider.navBar.alignTitle("center");
@Mik378 This will make the tabs go down instead of changing the alignment of the title!