I am using a Tabview with a Centerbutton. On iOS it looks great but Android has an ugly spacing between the tabs (see screenshot)
<syncfusion:SfTabView x:Name="tabView" AbsoluteLayout.LayoutBounds="1, 1, 1, 1" AbsoluteLayout.LayoutFlags="SizeProportional, PositionProportional" OverflowMode="CenterButton" BackgroundColor="{StaticResource lichtGrijzeAchtergrond}" SelectionChanged="tabView_SelectionChanged" VerticalOptions="FillAndExpand" TabHeaderPosition="Bottom" DisplayMode="Image" TabHeaderBackgroundColor="White" VisibleHeaderCount="5">
<syncfusion:SfTabView.SelectionIndicatorSettings>
<syncfusion:SelectionIndicatorSettings Color="Transparent" />
</syncfusion:SfTabView.SelectionIndicatorSettings>
<syncfusion:SfTabView.CenterButtonSettings>
<syncfusion:CenterButtonSettings Height="60" Width="60">
</syncfusion:CenterButtonSettings>
</syncfusion:SfTabView.CenterButtonSettings>
<syncfusion:SfTabView.CenterButtonView>
<Grid>
<ffsvg:SvgCachedImage VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand" Source="resource://AppviseursV2.Resources.icon_plus.svg">
<ffsvg:SvgCachedImage.Transformations>
<fftransf:TintTransformation HexColor="{StaticResource colorButtonsString}" EnableSolidColor="true"/>
</ffsvg:SvgCachedImage.Transformations>
<ffsvg:SvgCachedImage.GestureRecognizers>
<TapGestureRecognizer Tapped="CenterButton_Tapped"/>
</ffsvg:SvgCachedImage.GestureRecognizers>
</ffsvg:SvgCachedImage>
</Grid>
</syncfusion:SfTabView.CenterButtonView>
<syncfusion:SfTabItem x:Name="dashboardPage">
<syncfusion:SfTabItem.HeaderContent>
<StackLayout Spacing="0">
<BoxView IsVisible="{Binding BoxViewVisible}" HeightRequest="1" BackgroundColor="#c7c7c7"/>
<ffsvg:SvgCachedImage x:Name="homeImage" Style="{StaticResource menuIconsSmall}" HorizontalOptions="CenterAndExpand" VerticalOptions="CenterAndExpand" Source="resource://AppviseursV2.Resources.icon_dashboard.svg">
<ffsvg:SvgCachedImage.Transformations>
<fftransf:TintTransformation EnableSolidColor="true"/>
</ffsvg:SvgCachedImage.Transformations>
</ffsvg:SvgCachedImage>
</StackLayout>
</syncfusion:SfTabItem.HeaderContent>
</syncfusion:SfTabItem>