小编典典

如何在Flutter网站的新标签页或同一标签页中打开外部网址

flutter

我有一个使用Flutter Web创建的简单Web应用程序。我想知道如何external urlnew tabthe same tabFlutter网路应用程式中开启新的。


阅读 459

收藏
2020-08-13

共1个答案

小编典典

我想你想要这个:

import 'dart:js' as js;

.
.
.

FlatButton(
  child: Text("Button"),
  onPressed: () {
    js.context.callMethod("open", ["https://stackoverflow.com/questions/ask"]);
  },
)
2020-08-13