Hi,
I am using below code to apply a style to a specific control on a specific pages but Xamarin is changing the style of all labels in my app.
<Style x:Key="ExpanderHeaderLabel" TargetType="Label" ApplyToDerivedTypes="False">
<Setter Property="TextColor" Value="{AppThemeBinding Light=#000000, Dark=#000000}" />
</Style>
How can I fix this without having to have another style for all?
Thanks,
Jassim