Hello,
I'm having trouble with the icon color of the AppShell TabBar on Android platform (it works fine on iOS).
I defined the following styles:
<Style TargetType="TabBar">
<Setter Property="Shell.TabBarBackgroundColor" Value="White" />
<Setter Property="Shell.TabBarForegroundColor" Value="Black"/>
<Setter Property="Shell.TabBarUnselectedColor" Value="Gray"/>
<Setter Property="Shell.TabBarTitleColor" Value="Red"/>
</Style>
The styles work on iOS but on Android only the title changes to red when the tab is selected but the icon remains gray. If I change the unselected color to Green, all the icons become green, including the one on the selected tab, while the title is still red. It seems that the Shell.TabBarTitleColor applies only to the text title but it should apply to the icon color too. The icons are simple png with alpha channel. The same icons work fine on iOS.
I'm using VS Mac 8.10.6 with Xamarin.Forms 5.0.0.2010. Any help will be appreciated.
Thanks.


