【发布时间】:2019-07-06 21:31:42
【问题描述】:
//这是我的 webview 的颤振代码
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child : WebviewScaffold(
url: "https://www.facebook.com/",
// appBar: new AppBar(
// // title: new Text('Hairtips'),
// ),
withZoom: true,
withLocalStorage: true,
)
),
);
}
我正在我的颤振应用程序中实现 webview。我的片段中有三个 textview。当我点击 textview 时,我想在对话框中打开 webview。我知道如何在 android 中实现它。请建议我一些解决方案来修复这个问题
【问题讨论】:
标签: flutter