答案 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);
}
结果:
希望这会有所帮助。