Reputation: 11
I wanted to implement share feature in my app with xamarin forms '4.2.0.709249' and xamarin essential 1.3.1 Everything works fine except Reminder feature in iOS 13.0. It does not get my title or URI that i am sending through my share api. And also the 'Add' and 'Cancel' button on the top are not showing up though they are already there. So here is my code:
await Share.RequestAsync(new ShareTextRequest
{
Uri = "https://www.google.com",
Title ="Share the link"
});
iOS 13 reminder with xamarin Essential share
Upvotes: 1
Views: 473
Reputation: 15400
You're experiencing the expected behavior on iOS.
On iOS, Xamarin.Essentials.Share
does not support Subject
and Title
, as noted in the Platform Differences section of the docs.
Upvotes: 1