how to share image to email and twitter in Flutter

Viewed 23

enter image description here

Hello Seniors, I want to share image on clicking button to email and in twitter in flutter, I did for empty email but i want to share the image in the mail and same for twitter. Thanks

3 Answers

You can use share_plus package.it used to share content across different platforms

await Share.shareFiles(
      imagePaths,
      text: text,
      subject: subject,
      sharePositionOrigin: box!.localToGlobal(Offset.zero) & box.size);l̥
Related