I have an intent that shows icons for sharing content in social networks. It works great but I cant implement it in xamarin.forms.
Is there a way for doing it?
The code that I cant Execue is:
String shareBody = "Here is the share content body";
Intent sharingIntent = new Intent(Android.Content.Intent.ActionSend);
sharingIntent.SetType("text/plain");
sharingIntent.PutExtra(Android.Content.Intent.ExtraText, shareBody);
StartActivity(Intent.CreateChooser(sharingIntent, "Share using"));
I was trying to use the dependencyService but I cant convert from ContentPage to an android Activity