Ask Your Question
1

How to change the background color of "More" tabs in .NET MAUI?

asked 2021-07-21 11:00:00 +0000

lakamha gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2023-01-25 06:00:00 +0000

devzero gravatar image

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.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-07-21 11:00:00 +0000

Seen: 28 times

Last updated: Jan 25 '23