Hi all
Can I add item and index to xamarin picker
in asp.net I use this code
DropDownList1.Items.Add(New ListItem("English","EN"))
but in Xamarin forms I can only add Item
Picker1.Items.Add("English");
Is there a way to add the index, because I want to retrieve the index value?
Thank you in advance