我有一个使用Flutter Web创建的简单Web应用程序。我想知道如何external url在new tab或the same tabFlutter网路应用程式中开启新的。
external url
new tab
the same tab
我想你想要这个:
import 'dart:js' as js; . . . FlatButton( child: Text("Button"), onPressed: () { js.context.callMethod("open", ["https://stackoverflow.com/questions/ask"]); }, )