0
votes

I am using picker in Xamarin Forms and I want seleted text of picker in a string variable. Like-

string name = picker.SeletedItem.Text;(in WPF)

How to access text of picker in Xamarin Forms?

1

1 Answers

1
votes

Use :

picker.Items[picker.SelectedIndex];