Hi all,
I am trying to find out if it's possible to set the hint label outside of the control like this
Also, when adding a custom style to ErrorLabel there is a small "jump" in the oulined control when FontSize is set to 16 and the error text is not displayed.
Here is the xaml
<StackLayout FlexLayout.Basis="100%" Orientation="Horizontal">
<sf:SfTextInputLayout
ErrorText="{Binding Errors, Converter={converters:ErrorsToPropertyErrorConverter}, ConverterParameter=NotificationTitle}"
HasError="True"
Hint="Text"
HorizontalOptions="StartAndExpand">
<Entry HeightRequest="32" Text="{Binding NotificationTitle}" />
</sf:SfTextInputLayout>
<controls:Entry
AutomationId="NotificationTitleEntry"
Hint="{extensions:Translate Key=NotificationTitleText}"
HorizontalOptions="EndAndExpand"
Text="123" />
</StackLayout>