Xamarin.Forms how open default email client on device?
问题 In Xamarin.Forms if you want to open the device's default browser by tapping a Label with a link, it's simple as this: private void WebUrl_TapGestureRecognizer_Tapped(object sender, EventArgs e) { var label = sender as Label; string url = "http://" + label.Text; Device.OpenUri(new Uri(url)); } Is there a similarly simple way to open the device's default email client with an open NewMessage with email address? private void EmailClient_TapGestureRecognizer_Tapped(object sender, EventArgs e) {