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

时间:2019-07-18 17:04:17

标签: flutter inappbrowser

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

1 个答案:

答案 0 :(得分:1)

您可以使用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

希望这会有所帮助。