Hi,
On the SfTextInputLayout, the HintLabel style doesn't respond to setting the UserAppTheme but rather always inherits the devices Light or Dark mode setting.
I've defined my style
<Setter Property="HintLabelStyle">
<sfcore:LabelStyle
FontFamily="PoppinsRegular"
TextColor="{AppThemeBinding Light={StaticResource ColourBlack-2}, Dark={StaticResource ColourWhiteSmoke}}"
FontSize="10">
</sfcore:LabelStyle>
</Setter>
In my app I've setup a Light and Dark App Theme and allow the user to change it regardless of the device setting which the app then reacts to by using the Dark or Light styles. The HintLabelStyle doesn't react to the change though but always uses the devices mode which ends up with a the ColourWhiteSmoke being used even when the user changes the UserAppTheme to Light so is unreadable against a light background. The rest of the control responds accordingly though. Is this a known issue? It exists on both Android and iOS.
Regards
Shaun