在我的扑动应用程序中,我需要通过谷歌浏览器强制打开谷歌play商店链接,而不是通过play商店应用程序。我该怎么做呢?有可能吗?这段代码一直打开与Play Store应用程序的链接。
感谢TextButton(
onPressed: () async {
const url = 'https://play.google.com/store/apps/details?id=com.facebook.katana';
if(await canLaunch(url)){
await launch(url);
}else {
throw 'Could not launch $url';
}
},
child: const CustomWidget(
icon: Icons.language,
label: 'Open a URL',
),
),
有一个用于此目的的包,它叫做chrome_launcher
首先创建一个启动器:
final chromeLauncher = ChromeLauncher();
然后启动url
chromeLauncher.launchWithChrome(url_here);
你可以检查你还可以用这个例子做什么