Two questions:
In Xamarin.Forms, I have a listview. Each item is a ViewCell containing button, labels, images etc.
First, I want to detect tap on each item inside a ViewCell. Meaning tap on label, tap on image. All separately. How do I do this?
Secondly, how do I uniquely identify my labels/images inside each item so that I know exactly which label/image was tapped since a list view will have multiple items each having its own label/image.
Thanks.