xamarin.forms - How can I make a numeric entry in Xamarin be right justified? -
i using this:
<entry keyboard="numeric" verticaloptions="center" horizontaloptions="end" widthrequest="100"/>
however numbers left justified. there way can change numbers right justified , can change text colors of numbers appear blue?
right-justified text
horizontaltextalignment="end"
blue text
textcolor="blue"
updated code
<entry keyboard="numeric" verticaloptions="center" horizontaloptions="end" widthrequest="100" horizontaltextalignment="end" textcolor="blue" />
Comments
Post a Comment