我正在尝试从我的flutter应用程序发送whatsapp消息,但是我得到了错误:未处理的异常:MissingPluginException(在通道plugins.fltter.io/url_launcher_android上没有为方法启动找到实现)。我通过我的研究发现的一切都与我无关。请帮帮我。
void openWhatsapp(
{required BuildContext context,
required String text,
required String number}) async {
var whatsapp = number; //+92xx enter like this
var whatsappURlAndroid =
"whatsapp://send?phone=" + whatsapp + "&text=$text";
var whatsappURLIos = "https://wa.me/$whatsapp?text=${Uri.tryParse(text)}";
if (Platform.isIOS) {
// for iOS phone only
if (await canLaunchUrl(Uri.parse(whatsappURLIos))) {
await launchUrl(Uri.parse(
whatsappURLIos,
));
} else {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text("Whatsapp not installed")));
}
} else {
// android , web
if (await canLaunchUrl(Uri.parse(whatsappURlAndroid))) {
await launchUrl(Uri.parse(whatsappURlAndroid));
} else {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text("Whatsapp not installed")));
}
}
}
我试过:
..。
发布于 2022-11-24 07:11:55
这件事在我身上发生过一次,有两个原因:
扑动干净颤栗酒吧
并在模拟器/设备中重新运行您的应用程序(而不是热重新启动,您需要停止应用程序,然后再次运行)
希望这能有所帮助!
https://stackoverflow.com/questions/74562749
复制