Hello Syncfusion Support,
I have an Entry wrapped in a SfTextInputLayout that is using a HelperText.
I am using the following code snippet:
<inputLayout:SfTextInputLayout
HelperText="Enter your Password"
EnablePasswordVisibilityToggle="true"
ContainerType="Outlined"
OutlineCornerRadius="10"
ContainerBackgroundColor="White"
BackgroundColor="Black"
FocusedColor="Green"
FocusedStrokeWidth="3"
WidthRequest="250"
HorizontalOptions="Center"
IsVisible="{Binding PasswordVisible}"
>
<Entry x:Name="passwordInput" AutomationId="passwordInput"
Text="{Binding PassWord}"
IsPassword="{Binding IsPassWord}"
HorizontalOptions="Center" VerticalOptions="Center"
WidthRequest="250" TextColor="Black" Margin="0,0,0,45"
IsVisible="{Binding PasswordVisible}"
>
<!--Keyboard="Text"
Use the following to not get leading Capitals-->
<Entry.Keyboard>
<Keyboard x:FactoryMethod="Create">
<x:Arguments>
<KeyboardFlags>None</KeyboardFlags>
</x:Arguments>
</Keyboard>
</Entry.Keyboard>
</Entry>
</inputLayout:SfTextInputLayout>
What that gives me is a white box with rounded corners surrounded by black with the HintText in a greyish color under the white box. Google is saying that there is not enough color difference so that some people may not be able to read the HintText.
How can I change the color of the HintText to a lighter color (say White or Yellow)?
Thanks!
Will