'How do you add custom text to an SMS in flutter?
I'm trying to send an SMS from my flutter app when a user wants to interact with another user. I already have the phone number and I know I can open the SMS window using url_launcher package but that package doesn't let me add my own custom message to it. I do not want the text to be automatically sent though.
Basically what I want is when the url_launcher launches the SMS window, there is already a custom message that I have provided, so that the user can add on or remove stuff if they want to and then send the text themselves.
Thanks a lot!
Solution 1:[1]
Try https://pub.dev/packages/flutter_sms.
It allows opening an SMS app with prepopulated phone and text fields.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | K.Amanov |
