C
Join ServerC#
help
❔ maui toolbar background color
RRocco1/19/2023
Hiii, I'm using a toolbar in MAUI. It got carried over after upgrading from Xamarin. However I'm unable to change its color from it's default blue.
No Shell property I change in my Styles.xaml seems to affect anything. It's a lil confusing as it was very simple in Xamarin.
No Shell property I change in my Styles.xaml seems to affect anything. It's a lil confusing as it was very simple in Xamarin.

RRocco1/19/2023
<Style TargetType="Shell">
<Setter Property="TabBarForegroundColor" Value="White"></Setter>
<Setter Property="TabBarBackgroundColor" Value="White"></Setter>
</Style>
<Style TargetType="Page">
<Setter Property="Shell.TabBarForegroundColor" Value="White"></Setter>
<Setter Property="Shell.TabBarBackgroundColor" Value="White"></Setter>
</Style>
<Style TargetType="NavigationPage">
<Setter Property="Shell.TabBarForegroundColor" Value="White"></Setter>
<Setter Property="Shell.TabBarBackgroundColor" Value="White"></Setter>
</Style>
<Style TargetType="ContentPage">
<Setter Property="Shell.TabBarForegroundColor" Value="White"></Setter>
<Setter Property="Shell.TabBarBackgroundColor" Value="White"></Setter>
</Style>
AAccord1/20/2023
Looks like nothing has happened here. I will mark this as stale and this post will be archived until there is new activity.