I would like to change the text color in the AppShell. Under .NET 6 I had the following implementation in the Styles.xaml, which worked like this:
<Style Class="FlyoutItemLabelStyle"
TargetType="Label">
<Setter Property="TextColor"
Value="White"></Setter>
</Style>
See also the answer here: How to change Flyout ShellContent title text-color in MAUI?
After I upgraded the app to .NET 8, the adjustment of the text colour in the AppShell (under Android) no longer works. Does anyone have an idea how this can be solved?
I want to set FlyoutBackgroundColor to black and TextColor of labels to grey.