Hitesh Patil
Hitesh Patil

Reputation: 380

How to open mail or dialer in Xamarin.Forms in IOS?

The below code is working for android only.

Uri t = new Uri("tel:9999999999"); Device.OpenUri(t);

Uri t = new Uri("mailto:[email protected]"); Device.OpenUri(t);

Upvotes: 2

Views: 1332

Answers (1)

Hitesh Patil
Hitesh Patil

Reputation: 380

Actually i was tested this code in IOS emulator. So afterwards i come to know that my emulator doesnt having mailing as well as calling application. So i tried in iPhone its working properly.

Upvotes: 5

Related Questions