In Xamarin Forms I have added a gesture recognizer to let a user click on an email address label and have it open an email application.
On Android this works, the user is asked of they want to open in gmail or an email application, but nothing happens on ios.
Is there something ios-specific I have to do to handle this?
var emailGestureRecognizer = new TapGestureRecognizer(); emailGestureRecognizer.Tapped += (s, e) => { Device.OpenUri(new Uri("mailto:" + venue.ContactEmail)); }; ContactLabel.GestureRecognizers.Add(emailGestureRecognizer);