<!-- ComoboBox to get Login Type from user -->
<sfTextInputLayouts:SfTextInputLayout Margin="0"
IsHintAlwaysFloated="True"
ShowHint="True"
EnableFloating="True"
Hint="{trans:Translate Text='Label_LoginTypes'}"
HelperText="Please choose your Sign In Type."
ShowHelperText="True">
<sfComboBoxes:SfComboBox DataSource="{Binding SignInTypes}"
DisplayMemberPath="Translation"
EnableAutoSize="True"
SelectedItem="{Binding SelectedSignInType}"/>
</sfTextInputLayouts:SfTextInputLayout>
<!-- Entry to get Server URL from user -->
<sfTextInputLayouts:SfTextInputLayout Margin="0"
IsVisible="{Binding ServerUriVisible}"
ReserveSpaceForAssistiveLabels="False"
IsHintAlwaysFloated="True"
HelperText="Please enter the Server URL."
ShowHelperText="True"
Hint="{trans:Translate Text='Label_ServerUri'}">
<Entry Text="{Binding ServerUri}"/>
</sfTextInputLayouts:SfTextInputLayout>
<!-- Entry to get Username from user -->
<sfTextInputLayouts:SfTextInputLayout Margin="0"
ReserveSpaceForAssistiveLabels="True"
HelperText="Enter your login name."
ShowHelperText="True"
IsHintAlwaysFloated="True"
Hint="{trans:Translate Text='Label_Username'}">
<Entry Text="{Binding Username}"/>
</sfTextInputLayouts:SfTextInputLayout>
<!-- Entry to get password from user -->
<sfTextInputLayouts:SfTextInputLayout Margin="0"
ReserveSpaceForAssistiveLabels="False"
IsHintAlwaysFloated="True"
HelperText="Enter your password."
Hint="{trans:Translate Text='Label_Password'}"
EnablePasswordVisibilityToggle="true">
<Entry IsPassword="True" Text="{Binding Password}"/>
</sfTextInputLayouts:SfTextInputLayout>
Attached a screen shot of the Output on a S8.