我正在尝试在 Google Pixel API 30 Emulator 上打开一个链接,但不断出现错误。尝试过干净,重新启动的应用程序。
依赖性:-
url_launcher: ^6.0.3
代码:-
InkWell(
onTap:() => _launchURL("https://google.com"),
child: Image.asset("assets/images/googleIcon.jpg")
),
_launchURL(String url) async {
if (await canLaunch(url)) {
await launch(url);
} else {
throw 'Could not launch $url';
}
}
错误:-
Unhandled Exception: Could not launch https://google.com