| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- 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<MyHomePage> {
- // Instance of WebView plugin
- final flutterWebviewPlugin = new FlutterWebviewPlugin();
- // On destroy stream
- StreamSubscription _onDestroy;
- // On urlChanged stream
- StreamSubscription<String> _onUrlChanged;
- // On urlChanged stream
- StreamSubscription<WebViewStateChanged> _onStateChanged;
- TextEditingController _urlCtrl = new TextEditingController(
- text: "https://github.com/dart-flitter/flutter_webview_plugin");
- TextEditingController _codeCtrl =
- new TextEditingController(text: "window.navigator.userAgent");
- GlobalKey<ScaffoldState> _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<String> 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"))
- ],
- ),
- );
- }
- }
|