gpt4 book ai didi

Flutter 如何将网站链接到文本小部件?

转载 作者:行者123 更新时间:2023-12-03 03:11:19 31 4
gpt4 key购买 nike

我的菜单上有文本,单击时,会在我的手机浏览器中打开一个特定链接。

Padding(
padding: const EdgeInsets.only(left:20.0),
child: GestureDetector(
onTap: (){
//for example link https:google.com
},
child:Text(
"Rate the app",
style: TextStyle(
fontSize: 18.0
),
),
),

),

最佳答案

您可以使用url_launcher .


Padding(
padding: const EdgeInsets.only(left:20.0),
child: GestureDetector(
onTap: () => _launchURL(), // call the _launchURL here
child:Text(
"Rate the app",
style: TextStyle(
fontSize: 18.0
),
),
),

),

_launchURL 方法如下:


_launchURL() async {
const url = 'https://google.com';
if (await canLaunch(url)) {
await launch(url);
} else {
throw 'Could not launch $url';
}
}

关于Flutter 如何将网站链接到文本小部件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62980592/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com