I am working on a flutter app that has a 'Contact me' section. I have already provided a direct mailto
link in the app using the url_launcher
plugin.
Now I plan to open a Telegram chat with my telegram account in the user's phone. How do I do it?
Use url_launcher
here is the code
import 'package:url_launcher/url_launcher.dart';
void launchTelegram() async{
String url =
"https://telegram.me/<telegram_username>";
print("launchingUrl: $url");
if (await canLaunch(url)) {
await launch(url,
mode: LaunchMode.externalApplication);
}
}