Hi Guys,
I have an issue with TapGestureRecogniser in a shared project... basically from the examples ive seem there is a .Tapped event. however in the latest version/update i dont seem to have that? has it been renamed...do i need to include something. there appears to be a TappedCallback function but that is it?
var tapGestureRecognizer = new TapGestureRecognizer();
tapGestureRecognizer.TappedCallback += (sender, e) => Debug.WriteLine("Tapped");
view.GestureRecognizers.Add(tapGestureRecognizer);
im currently using Xamarin.Forms.OpenGLView and i want to capture touch events
kind regards