You can use web plugin like
@override
Widget build(BuildContext context) {
String url = widget.url;
return Scaffold(
body: Center(
child : WebviewScaffold(
url: "https://google.com",
appBar: new AppBar(
title: new Text(widget.title),
),
withZoom: true,
withLocalStorage: true,
)
),
);
}