Hello, when I use TabWidthMode="SizeToContent", the tab item header text was truncated instead of fully displayed. I tried to set width but the text disappeared. Could you please help me? Thank you.
Here is my code:
<tabView:SfTabView
Grid.Row="1"
Margin="0,0,0,0"
FlowDirection="LeftToRight"
HorizontalOptions="StartAndExpand"
IndicatorBackground="{DynamicResource AccentColor}"
IndicatorWidthMode="Stretch"
TabBarPlacement="Top"
TabHeaderPadding="0,0,0,0"
TabWidthMode="SizeToContent"
VerticalOptions="FillAndExpand">
<tabView:SfTabView.Items>
<tabView:SfTabItem Header="Receipts">
<tabView:SfTabItem.Content>
....
</tabView:SfTabItem.Content>
</tabView:SfTabItem>
<tabView:SfTabItem Header="History">
<tabView:SfTabItem.Content>
....
</tabView:SfTabItem.Content>
</tabView:SfTabItem>