xamarin - How can I allocate more space to a numeric -
here xaml code created:
<viewcell> <grid verticaloptions="centerandexpand" padding="20, 0"> <label horizontaloptions="startandexpand" text="abc" /> <entry keyboard="numeric" verticaloptions="center" horizontaloptions="end" /> </grid> </viewcell>
when run code data entry area window wide enough show 1 digit. there way can expand allow me enter 3 digits?
set widthrequest value, , try changing horizontaloptions
<entry keyboard="numeric" verticaloptions="center" widthrequest="100" horizontaloptions="fillandexpand" />
Comments
Post a Comment