我试着打开Facebook的信使使用urllauncher如下。但我不能启动信使。
我可以打开facebook页面,youtube,甚至用urllaucher打电话。
OutlinedButton.icon(
onPressed: () async {
//_launchURL(about.messenger!,);
await canLaunch("https://m.me/myfacebookname")
? await launch("https://m.me/myfacebookname", forceWebView: false)
: throw 'Could not launch ${"https://m.me/myfacebookname"}';
},
icon: const Icon(Icons.messenger_outline_sharp),
label: const AutoSizeText(""),
style: ButtonStyle(
shape: MaterialStateProperty.all(RoundedRectangleBorder(
borderRadius: BorderRadius.circular(30.0))),
),
),
2条答案
按热度按时间c0vxltue1#
我需要在Minifest中添加查询选项卡。我想我不需要它,因为我可以打开Facebook。
6pp0gazn2#
这是我如何打开Facebook信使从我的flutter应用程序。我创建了一个函数如下。
然后在按钮上调用函数。
希望能有所帮助。