I want to share content on social sites using mobile browser in my flutter web site i used share_plus but it is not opening the share sheet just opening the email if i provide subject in it.
Share.share("This is a text message", subject: "");
I want to share content on social sites using mobile browser in my flutter web site i used share_plus but it is not opening the share sheet just opening the email if i provide subject in it.
Share.share("This is a text message", subject: "");
Since not all browsers are supported, we can check the availability of the API before attempting to call it from Flutter Web.
On Safari(Mac OS/iOS) and Chrome(Windows/Chrome OS) this works just fine:
I have the following working:
References: