Home > Mobile >  How to share a link and a finished text using Share
How to share a link and a finished text using Share

Time:08-18

I use the Share package so that when I click on the icon I can share the link. I would also like that when I share my link, I have a ready-made text description of this link. I tried to do this through Subject, but the result is the link itself without text.

 onTap: () {
  Share.share('https://www.youtube.com', subject:  'Nice Service');
 },

CodePudding user response:

You can use this:

await Share.share(
        'https://www.youtube.com'   ','   'Nice Service',
      );
  • Related