Skip to content

Instantly share code, notes, and snippets.

View EdoardoVignati's full-sized avatar

Edoardo Vignati EdoardoVignati

View GitHub Profile
@malloy045
malloy045 / login.dart
Created April 12, 2019 12:55
flutter_webview_plugin basic example
import 'package:flutter/material.dart';
import 'package:flutter_webview_plugin/flutter_webview_plugin.dart';
class Login extends StatefulWidget {
Login({Key key}) : super(key: key);
@override
_MyLoginPageState createState() => _MyLoginPageState();
}