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',
);