Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

To change the background color of "More" tabs in .NET MAUI, you can use the following code in your XAML file:

<Shell.Resources>
    <Style TargetType="TabBar">
        <Setter Property="BackgroundColor" Value="YourDesiredColor" />
    </Style>
</Shell.Resources>

Replace "YourDesiredColor" with the color you want to use. This code will set the background color of the entire tab bar, including the "More" tab.