Articles in this section
Category / Section

How to Customize Badge Appearance in .NET MAUI TabView?

5 mins read

This article explains how to customize the badge appearance in the .NET MAUI TabView.

To fully customize the badge in the TabView, you can set the Type property in BadgeSettings to None. This allows you to customize the badge beyond predefined styles by explicitly specifying properties such as Background and TextColor.

<ContentPage ...
             xmlns:core="clr-namespace:Syncfusion.Maui.Core;assembly=Syncfusion.Maui.Core"
             xmlns:tabView="clr-namespace:Syncfusion.Maui.TabView;assembly=Syncfusion.Maui.TabView">
    <tabView:SfTabView x:Name="tabView" >
        <tabView:SfTabView.Items>
            <tabView:SfTabItem Header="Call" BadgeText="3">
                <tabView:SfTabItem.BadgeSettings>
                    <core:BadgeSettings Type="None" Background="GreenYellow" TextColor="Red" TextPadding="3"/>
                </tabView:SfTabItem.BadgeSettings>
                <tabView:SfTabItem.Content>
                    <ListView RowHeight="50">
                        <ListView.ItemsSource>
                            <x:Array Type="{x:Type x:String}">
                                <x:String>James</x:String>
                                <x:String>Richard</x:String>
                                <x:String>Michael</x:String>
                                <x:String>Alex</x:String>
                                <x:String>Clara</x:String>
                            </x:Array>
                        </ListView.ItemsSource>
                        <ListView.ItemTemplate>
                            <DataTemplate>
                                <ViewCell>
                                    <Grid Margin="10,5">
                                        <Label VerticalOptions="Start"
                                                        HorizontalOptions="Start"
                                                        TextColor="#666666"
                                                        FontSize="16"
                                                        Text="{Binding}" />
                                    </Grid>
                                </ViewCell>
                            </DataTemplate>
                        </ListView.ItemTemplate>
                    </ListView>
                </tabView:SfTabItem.Content>
            </tabView:SfTabItem>
        </tabView:SfTabView.Items>
    </tabView:SfTabView>
</ContentPage>

By setting Type to None in BadgeSettings, you gain complete control over the appearance of the badge in TabView.

Output

Badge_TabView.png

Download the complete sample from the GitHub

Conclusion

I hope you enjoyed learning how to customize badge appearance in .NET MAUI TabView.

You can refer to our .NET MAUI Tab View feature tour page to know about its other groundbreaking feature representations and documentation , and how to quickly get started for configuration specifications. You can also explore our .NET MAUI TabView example to understand how to create and manipulate data.

For current customers, you can check out our components from the License and Download page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied