Reputation: 24562
I am using this:
<Entry Keyboard="Numeric" VerticalOptions="Center" HorizontalOptions="End" WidthRequest="100"/>
However the numbers are all left justified. Is there a way I can change this so the numbers are right justified and can I also change the text colors of the numbers that appear to blue?
Upvotes: 2
Views: 775
Reputation: 15340
HorizontalTextAlignment="End"
TextColor="Blue"
<Entry Keyboard="Numeric" VerticalOptions="Center" HorizontalOptions="End" WidthRequest="100" HorizontalTextAlignment="End" TextColor="Blue" />
Upvotes: 1
Reputation: 694
My mistake. HorizontalTextAlignment="End"
as described in this comment
Upvotes: 1