0

我正在尝试在 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
4

1 回答 1

0

添加一个 URI 类,因为 url_launcher 建议将 URL 编码为 URI。链接到文档

final Uri _faireGitHubUri = Uri.https('google.com', '/');

    InkWell(
onTap:() => _launchURL(_websiteUri.toString()),
child: Image.asset("assets/images/googleIcon.jpg")
),
于 2021-05-27T07:20:12.160 回答