I have one of the tabs in my TabView set with an image in the header content like so:
<tabView:SfTabItem>
<tabView:SfTabItem.HeaderContent>
<Image Source="messagesOutline" HeightRequest="28" MinimumHeightRequest="28" WidthRequest="28" MinimumWidthRequest="28"></Image>
</tabView:SfTabItem.HeaderContent>
<tabView:SfTabItem.Content>
<StackLayout Style="{StaticResource MasterBackground}">
…
</StackLayout>
</tabView:SfTabItem.Content>
</tabView:SfTabItem>
This works perfectly fine in iOS, but unfortunately in Android you cannot click on it. I'm sure there is something that I am doing wrong, I just can't figure it out.