From 57b37399ef949245737bc466ef63a62ee5550972 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Fri, 11 Oct 2019 16:17:27 +0200 Subject: [PATCH] OAuthApp: Add a main This way we can easily run it --- lib/oauthapp.dart | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/oauthapp.dart b/lib/oauthapp.dart index 1a392bc6..48f519b1 100644 --- a/lib/oauthapp.dart +++ b/lib/oauthapp.dart @@ -83,3 +83,7 @@ class OAuthAppState extends State { ); } } + +void main() async { + runApp(OAuthApp()); +}