gpt4 book ai didi

flutter - 如何在应用内浏览器窗口中打开链接

转载 作者:IT王子 更新时间:2023-10-29 07:16:53 27 4
gpt4 key购买 nike

我想知道如何在应用内浏览器中打开链接,就像这样:

in-app browser

最佳答案

您可以使用 flutter_web_browser 来实现以 Android chrome 选项卡样式在应用程序内打开网页的插件。

例如:

body: new Center(
child: new RaisedButton(
onPressed: () => openBrowserTab(),
child: new Text('Open website'),
),
),


openBrowserTab() async {
await FlutterWebBrowser.openWebPage(url: "https://gadgets.ndtv.com/", androidToolbarColor: Colors.deepPurple);
}

结果:

enter image description here

希望这对您有所帮助。

关于flutter - 如何在应用内浏览器窗口中打开链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57099513/

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