I\'m doing some testing with the Tab Bar in Xamarin Shell. If the tab\'s title is too long it gets truncated even though there is clearly more than enough room to show the w
In styles.xml add a 10sp in your MainTheme.Base style. You can also change the color when selected by changing colorPrimary.
<style name="MainTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- colorPrimary is used for the default action bar background -->
<item name="colorPrimary">#3B9894</item>
<item name="android:textAllCaps">false</item>
<item name="colorAccent">#544B99</item>
<item name="android:textSize">14sp</item>
</style>