import 'dart:async'; import 'package:flutter/material.dart'; import 'package:flutter_webview_plugin/flutter_webview_plugin.dart'; const kAndroidUserAgent = "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Mobile Safari/537.36"; void main() { runApp(new MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return new MaterialApp( title: 'Flutter WebView Demo', theme: new ThemeData( primarySwatch: Colors.blue, ), home: new MyHomePage(title: 'Flutter WebView Demo'), ); } } class MyHomePage extends StatefulWidget { MyHomePage({Key key, this.title}) : super(key: key); final String title; @override _MyHomePageState createState() => new _MyHomePageState(); } class _MyHomePageState extends State { // Instance of WebView plugin final flutterWebviewPlugin = new FlutterWebviewPlugin(); // On destroy stream StreamSubscription _onDestroy; // On urlChanged stream StreamSubscription _onUrlChanged; // On urlChanged stream StreamSubscription _onStateChanged; TextEditingController _urlCtrl = new TextEditingController( text: "https://github.com/dart-flitter/flutter_webview_plugin"); TextEditingController _codeCtrl = new TextEditingController(text: "window.navigator.userAgent"); GlobalKey _scaffoldKey = new GlobalKey(); final _history = []; @override initState() { super.initState(); // Add a listener to on destroy WebView, so you can make came actions. _onDestroy = flutterWebviewPlugin.onDestroy.listen((_) { if (mounted) { // Actions like show a info toast. _scaffoldKey.currentState .showSnackBar(new SnackBar(content: new Text("Webview Destroyed"))); } }); // Add a listener to on url changed _onUrlChanged = flutterWebviewPlugin.onUrlChanged.listen((String url) { if (mounted) { setState(() { _history.add("onUrlChanged: $url"); }); } }); _onStateChanged = flutterWebviewPlugin.onStateChanged.listen((WebViewStateChanged state) { if (mounted) { setState(() { _history.add("onStateChanged: ${state.type} ${state.url}"); }); } }); } @override void dispose() { // Every listener should be canceled, the same should be done with this stream. _onDestroy.cancel(); _onUrlChanged.cancel(); _onStateChanged.cancel(); flutterWebviewPlugin.dispose(); super.dispose(); } @override Widget build(BuildContext context) { return new Scaffold( key: _scaffoldKey, appBar: new AppBar( title: new Text('Plugin example app'), ), body: new Column( mainAxisAlignment: MainAxisAlignment.center, children: [ new Container( padding: const EdgeInsets.all(24.0), child: new TextField(controller: _urlCtrl), ), new RaisedButton( onPressed: () { flutterWebviewPlugin.launch(_urlCtrl.text, fullScreen: false, rect: new Rect.fromLTWH( 0.0, 0.0, MediaQuery.of(context).size.width, 300.0), userAgent: kAndroidUserAgent); }, child: new Text("Open Webview (rect)"), ), new RaisedButton( onPressed: () { flutterWebviewPlugin.launch(_urlCtrl.text, hidden: true); }, child: new Text("Open 'hidden' Webview"), ), new RaisedButton( onPressed: () { flutterWebviewPlugin.launch(_urlCtrl.text, fullScreen: true); }, child: new Text("Open Fullscreen Webview"), ), new Container( padding: const EdgeInsets.all(24.0), child: new TextField(controller: _codeCtrl), ), new RaisedButton( onPressed: () { Future future = flutterWebviewPlugin.evalJavascript(_codeCtrl.text); future.then((String result) { setState(() { _history.add("eval: $result"); }); }); }, child: new Text("Eval some javascript"), ), new RaisedButton( onPressed: () { setState(() { _history.clear(); }); flutterWebviewPlugin.close(); }, child: new Text("Close"), ), new RaisedButton( onPressed: () { flutterWebviewPlugin.getCookies().then((m) { setState(() { _history.add("cookies: $m"); }); }); }, child: new Text("Cookies"), ), new Text(_history.join("\n")) ], ), ); } }