Hello,
Welcome to our Microsoft Q&A platform!
@Radoslav Atanasov Shell includes the FlyoutItemLayoutStyle class, which could be automatically applied to the FlyoutItem object.
Check the code:
<Shell ...>
<Shell.Resources>
...
<ResourceDictionary>
<Style Class="FlyoutItemLabelStyle" TargetType="Label">
<Setter Property="TextColor" Value="DarkCyan"></Setter>
</Style>
</ResourceDictionary>
</Shell.Resources>
<FlyoutItem Title="page_1">
<ShellContent Title="page_1" ContentTemplate="{DataTemplate local:Page1}" />
</FlyoutItem>
<FlyoutItem Title="page_2">
<ShellContent Title="page_2" ContentTemplate="{DataTemplate local:MainPage}" />
</FlyoutItem>
</Shell>
Best Regards,
Jarvan Zhang
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.