| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- import 'dart:async';
- import 'package:flutter/material.dart';
- import 'package:flutter_webview_plugin/flutter_webview_plugin.dart';
- 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 flutterWebviewPlugin = new FlutterWebviewPlugin();
- // On destroy stream
- StreamSubscription _onDestroy;
- TextEditingController _ctrl = new TextEditingController(text: "https://flutter.io");
- GlobalKey<ScaffoldState> _scaffoldKey = new GlobalKey();
- @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")));
- }
- });
- }
- @override
- void dispose() {
- // Every listener should be canceled, the same should be done with this stream.
- _onDestroy?.cancel();
- 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: _ctrl),
- ),
- new RaisedButton(
- onPressed: _onPressed,
- child: new Text("Open Webview"),
- )
- ],
- ),
- );
- }
- void _onPressed() {
- try {
- // This way you launch WebView with an url as a parameter.
- flutterWebviewPlugin.launch(_ctrl.text);
- } catch (e) {
- print(e);
- }
- }
- }
|