i have a TabbedPage with multiple Child-Pages, with a title each. When the title is short enough to be single line the text gets centered perfectly, but as soon as the text nee
I think it's impossible to do in common way for all platforms, and you have to do it in platform specific way.
For android project I did it in such way: In file Styles.xml from folder Resources/values I added style
And in MainActivity.cs I added
[Activity(Theme = "@style/CustomTheme")]
For Windows phone I found this article https://nocture.dk/2014/12/10/xamarin-forms-customizing-tabbed-page-header-title-windows-phone/, but didn't try it.
For iOS i didn't check too http://jfarrell.net/2015/02/25/customizing-the-tab-bar-on-ios-with-xamarin-forms/.