我想直接从我的flutter应用程序打个电话。我试过使用"URL-Launcher“插件,但它只能将电话号码定向到拨号盘。你能告诉我如何只使用我的应用程序而不重定向它吗?
发布于 2020-06-14 03:57:30
你可以使用this插件很容易做到这一点。
await FlutterPhoneDirectCaller.callNumber(number);
https://stackoverflow.com/questions/62364457
相似问题