Hi,
I've icons which created in black colour. When I add them to toolbar in iOS they are automatically showing in white colour:

On Android icons are shown in black colour:

XAML:
<ContentPage.ToolbarItems>
<ToolbarItem IconImageSource="erase24.png" Command="{Binding ClearCommand}"/>
<ToolbarItem IconImageSource="checkmark24.png" Command="{Binding DoneCommand}"/>
</ContentPage.ToolbarItems>
Question: how can I change toolbar item icon colour in Android? is there some setting in Android styles that I can apply so all images has white tint/colour?
Is this even possible on Android, or do I need to have 2 sets of images, e.g. black and white?
Another approach would be to use my own NavigationBar in every page, but would rather avoid doing this if possible.