Hi!
When I set DisplayMode="ImageWithText" I get a NullReferenceException if I use
<tab:SfTabItem Title="Title">
<tab:SfTabItem.ImageSource>
<FontImageSource ... />
</tab:SfTabItem.ImageSource>
....
</tab:SfTabItem>
It works fine when I try
<tab:SfTabItem Title="Title" ImageSource="icon.png">
....
</tab:SfTabItem>
or
<tab:SfTabItem Title="Title">
<tab:SfTabItem.ImageSource>
<FileImageSource File="icon.png" />
</tab:SfTabItem.ImageSource>
....
</tab:SfTabItem>