I am trying to create <Entry> field with HorizontalTextAlignment="End". When typing more than one word (ex: Burger King), hitting the spacebar between the words does nothing. Once you hit the "K" in King, it will add the space and register the K. This behavior only happens on iOS from what I can tell.
I have tried OnTextChanged Invalidating the size hoping this would redraw the input, but this was not working for me.
Any help would be appreciated.
Here is an example of the code I am working with.
<StackLayout
VerticalOptions="Center">
<!-- Place new controls here -->
<Label Text="Merchant"
VerticalOptions="CenterAndExpand" />
<Entry
HorizontalOptions="EndAndExpand"
HorizontalTextAlignment="End"
Placeholder="Name"
PlaceholderColor="Black"></Entry>
</StackLayout>