Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Numeric UpDown Control for Xamarin Forms

Can any one Please provide Numeric UpDown Control demo with Xamarin Forms Does this control Available in Xamarin Forms? thanks Prashanth

like image 647
Prashanth R Avatar asked Dec 25 '22 03:12

Prashanth R


1 Answers

See edit #2.

No there is not a spinner control out-of-the-box. If you do not want to get creative, you could use the Picker control and insert predefined values into it. Picker info here.

Otherwise it would be pretty trivial to create an up and down Button and an Entry or Label. Clicking the up Button increments a number in the Entry or Label. Clicking the down Button decrements a number in the Entry or Label.

*Edit: Just happened to land on Syncfusion's NumericUpDown control which does want you want. You can also get a free community license for the control if you are a lone developer or a group of 5 or fewer people. Community License info here

*Edit #2: Was looking through the Xamarin Views list page here and saw that actually do have a Stepper control now!

like image 130
hvaughan3 Avatar answered Jan 10 '23 02:01

hvaughan3