easy_url_launcher 0.0.7
easy_url_launcher: ^0.0.7 copied to clipboard
A simple and very easy flutter package for launch url,email,call and sms in your App
0.0.7 #
- First version
changing: #
LaunchMode
to #
Mode
- Adding a method for open a map using Google map
- Adding method to send message to whatsapp
MaterialButton(
color: Colors.green[700],
textColor: Colors.white,
onPressed: () async {
await EasyLauncher.sendToWhatsApp(
phone: "+93700000000", message: "hi");
},
child: const Text("Send to whatsapp"),
),