Goodmorning all .I am beginner in Xamarin.Forms. I am trying to learn how to get data in Listview with webservices.
My json format :
{
"contacts": [
{
"name": "Clark Kent",
"email": "[email protected]"
},
{ "name": "Bruce Wayne",
"email": "[email protected]"
},
{ "name": "Tony Stark",
"email": "[email protected]"
},
]
}
I want to get this Data in Listview. Please help How to call Url and this data in Listview. Thanks in advance.