Shanmugasundharam
Shanmugasundharam

Reputation: 2092

Xamarin.forms Data passing to another view

I have problem with passing parameter of ListView(Data Json Response) to Detailview. In listview i showed name of the title, and i want to show some details in DetailView. here the problem i can`t get index value of set of JSOn Value to pass Detail view.

Thanks in Advance.

Upvotes: 0

Views: 59

Answers (1)

Alessandro Caliaro
Alessandro Caliaro

Reputation: 5768

When you use ListView and select an Item, you have SelectedItem property with the selected value. Pass SelectedItem to your DetailView. It's enough

Upvotes: 1

Related Questions