我正在使用 url_launcher 包,我可以使用它轻松打开链接和邮件,但我尝试打开 itms-apps://apps.apple.com/account/subscriptions 为用户提供在 iOS 中取消订阅的选项,但我是得到一个例外。
_launchURL(String _url) async => await canLaunch(_url)
? await launch(_url)
: throw 'Could not launch $_url';
对于上述情况,正常的 URL 是打开的,但上面提到的不是打开的。