Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to open telegram bot from Flutter app?

Tags:

flutter

dart

I want to open an telegram bot from Flutter app. How can I do it?

Text('Join @SomeBot first, to get app results in Telegram!')

How to make an opening by onTap text?

like image 883
Вячеслав Avatar asked Sep 13 '25 10:09

Вячеслав


1 Answers

I resolve problem with url_launcher plugin

onPressed: () => launch(
                            "https://t.me/SomeBot",
                            forceSafariVC: false)
like image 154
Вячеслав Avatar answered Sep 16 '25 01:09

Вячеслав