Hello all,
I have some validation rules on a registration form. Each time the user types in something, the validation rule is updated and thus calls the HasError. Prob is each time the error display animation is played which result in something that feels like clipping/blinking. Is it possible to remove this behavior ?
Thanks.
<inputLayout:SfTextInputLayout
x:Name="emailLayout"
ContainerType="Filled"
Hint="Email"
HasError="{Binding User.Errors.[Email], Converter={StaticResource NullToVisibilityNone}}"
ErrorText="{Binding User.Errors.[Email]}"
LeadingViewPosition="Outside">
<Entry x:Name="emailEntry" Text="{Binding User.Email}" TextColor="White" />
<inputLayout:SfTextInputLayout.LeadingView>
<Label
TextColor="White"
FontSize="20"
FontFamily="{StaticResource MaterialFontFamily}"
Text="{x:Static constants:IconFont.Email}">
</Label>
</inputLayout:SfTextInputLayout.LeadingView>
</inputLayout:SfTextInputLayout>