-
Notifications
You must be signed in to change notification settings - Fork 93
/
main.dart
908 lines (831 loc) · 27.9 KB
/
main.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
import 'dart:async';
import 'dart:convert';
import 'package:http/http.dart' as http;
import 'package:flutter/material.dart';
import 'package:shared_preferences/shared_preferences.dart';
import 'package:amazon_cognito_identity_dart/cognito.dart';
import 'package:amazon_cognito_identity_dart/sig_v4.dart';
// Setup AWS User Pool Id & Client Id settings here:
const _awsUserPoolId = 'ap-southeast-1_xxxxxxxxx';
const _awsClientId = 'xxxxxxxxxxxxxxxxxxxxxxxxxx';
const _identityPoolId = 'ap-southeast-1:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx';
// Setup endpoints here:
const _region = 'ap-southeast-1';
const _endpoint =
'https://xxxxxxxxxx.execute-api.ap-southeast-1.amazonaws.com/dev';
final userPool = new CognitoUserPool(_awsUserPoolId, _awsClientId);
/// Extend CognitoStorage with Shared Preferences to persist account
/// login sessions
class Storage extends CognitoStorage {
SharedPreferences _prefs;
Storage(this._prefs);
@override
Future getItem(String key) async {
String item;
try {
item = json.decode(_prefs.getString(key));
} catch (e) {
return null;
}
return item;
}
@override
Future setItem(String key, value) async {
_prefs.setString(key, json.encode(value));
return getItem(key);
}
@override
Future removeItem(String key) async {
final item = getItem(key);
if (item != null) {
_prefs.remove(key);
return item;
}
return null;
}
@override
Future<void> clear() async {
_prefs.clear();
}
}
class Counter {
int count;
Counter(this.count);
factory Counter.fromJson(json) {
return new Counter(json['count']);
}
}
class User {
String email;
String name;
String password;
bool confirmed = false;
bool hasAccess = false;
User({this.email, this.name});
/// Decode user from Cognito User Attributes
factory User.fromUserAttributes(List<CognitoUserAttribute> attributes) {
final user = User();
attributes.forEach((attribute) {
if (attribute.getName() == 'email') {
user.email = attribute.getValue();
} else if (attribute.getName() == 'name') {
user.name = attribute.getValue();
}
});
return user;
}
}
class CounterService {
AwsSigV4Client awsSigV4Client;
CounterService(this.awsSigV4Client);
/// Retrieve user's previous count from Lambda + DynamoDB
Future<Counter> getCounter() async {
final signedRequest =
new SigV4Request(awsSigV4Client, method: 'GET', path: '/counter');
final response =
await http.get(signedRequest.url, headers: signedRequest.headers);
return new Counter.fromJson(json.decode(response.body));
}
/// Increment user's count in DynamoDB
Future<Counter> incrementCounter() async {
final signedRequest =
new SigV4Request(awsSigV4Client, method: 'PUT', path: '/counter');
final response =
await http.put(signedRequest.url, headers: signedRequest.headers);
return new Counter.fromJson(json.decode(response.body));
}
}
class UserService {
CognitoUserPool _userPool;
CognitoUser _cognitoUser;
CognitoUserSession _session;
UserService(this._userPool);
CognitoCredentials credentials;
/// Initiate user session from local storage if present
Future<bool> init() async {
final prefs = await SharedPreferences.getInstance();
final storage = new Storage(prefs);
_userPool.storage = storage;
_cognitoUser = await _userPool.getCurrentUser();
if (_cognitoUser == null) {
return false;
}
_session = await _cognitoUser.getSession();
return _session.isValid();
}
/// Get existing user from session with his/her attributes
Future<User> getCurrentUser() async {
if (_cognitoUser == null || _session == null) {
return null;
}
if (!_session.isValid()) {
return null;
}
final attributes = await _cognitoUser.getUserAttributes();
if (attributes == null) {
return null;
}
final user = new User.fromUserAttributes(attributes);
user.hasAccess = true;
return user;
}
/// Retrieve user credentials -- for use with other AWS services
Future<CognitoCredentials> getCredentials() async {
if (_cognitoUser == null || _session == null) {
return null;
}
credentials = new CognitoCredentials(_identityPoolId, _userPool);
await credentials.getAwsCredentials(_session.getIdToken().getJwtToken());
return credentials;
}
/// Login user
Future<User> login(String email, String password) async {
_cognitoUser =
new CognitoUser(email, _userPool, storage: _userPool.storage);
final authDetails = new AuthenticationDetails(
username: email,
password: password,
);
bool isConfirmed;
try {
_session = await _cognitoUser.authenticateUser(authDetails);
isConfirmed = true;
} on CognitoClientException catch (e) {
if (e.code == 'UserNotConfirmedException') {
isConfirmed = false;
} else {
throw e;
}
}
if (!_session.isValid()) {
return null;
}
final attributes = await _cognitoUser.getUserAttributes();
final user = new User.fromUserAttributes(attributes);
user.confirmed = isConfirmed;
user.hasAccess = true;
return user;
}
/// Confirm user's account with confirmation code sent to email
Future<bool> confirmAccount(String email, String confirmationCode) async {
_cognitoUser =
new CognitoUser(email, _userPool, storage: _userPool.storage);
return await _cognitoUser.confirmRegistration(confirmationCode);
}
/// Resend confirmation code to user's email
Future<void> resendConfirmationCode(String email) async {
_cognitoUser =
new CognitoUser(email, _userPool, storage: _userPool.storage);
await _cognitoUser.resendConfirmationCode();
}
/// Check if user's current session is valid
Future<bool> checkAuthenticated() async {
if (_cognitoUser == null || _session == null) {
return false;
}
return _session.isValid();
}
/// Sign up new user
Future<User> signUp(String email, String password, String name) async {
CognitoUserPoolData data;
final userAttributes = [
new AttributeArg(name: 'name', value: name),
];
data =
await _userPool.signUp(email, password, userAttributes: userAttributes);
final user = new User();
user.email = email;
user.name = name;
user.confirmed = data.userConfirmed;
return user;
}
Future<void> signOut() async {
if (credentials != null) {
await credentials.resetAwsCredentials();
}
if (_cognitoUser != null) {
return _cognitoUser.signOut();
}
}
}
void main() => runApp(new SecureCounterApp());
class SecureCounterApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Cognito on Flutter',
theme: new ThemeData(
primarySwatch: Colors.orange,
),
home: HomePage(title: 'Cognito on Flutter'),
);
}
}
class HomePage extends StatefulWidget {
HomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_HomePageState createState() => new _HomePageState();
}
class _HomePageState extends State<HomePage> {
@override
Widget build(BuildContext context) {
final Size screenSize = MediaQuery.of(context).size;
return new Scaffold(
appBar: new AppBar(
title: new Text(widget.title),
),
body: new Center(
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
new Container(
padding:
new EdgeInsets.only(left: 20.0, right: 20.0, bottom: 20.0),
width: screenSize.width,
child: new RaisedButton(
child: new Text(
'Sign Up',
style: new TextStyle(color: Colors.white),
),
onPressed: () {
Navigator.push(
context,
new MaterialPageRoute(
builder: (context) => new SignUpScreen()),
);
},
color: Colors.blue,
),
),
new Container(
padding:
new EdgeInsets.only(left: 20.0, right: 20.0, bottom: 20.0),
width: screenSize.width,
child: new RaisedButton(
child: new Text(
'Confirm Account',
style: new TextStyle(color: Colors.white),
),
onPressed: () {
Navigator.push(
context,
new MaterialPageRoute(
builder: (context) => new ConfirmationScreen()),
);
},
color: Colors.blue,
),
),
new Container(
padding:
new EdgeInsets.only(left: 20.0, right: 20.0, bottom: 20.0),
width: screenSize.width,
child: new RaisedButton(
child: new Text(
'Login',
style: new TextStyle(color: Colors.white),
),
onPressed: () {
Navigator.push(
context,
new MaterialPageRoute(
builder: (context) => new LoginScreen()),
);
},
color: Colors.blue,
),
),
new Container(
padding:
new EdgeInsets.only(left: 20.0, right: 20.0, bottom: 20.0),
width: screenSize.width,
child: new RaisedButton(
child: new Text(
'Secure Counter',
style: new TextStyle(color: Colors.white),
),
onPressed: () {
Navigator.push(
context,
new MaterialPageRoute(
builder: (context) => new SecureCounterScreen()),
);
},
color: Colors.blue,
),
),
],
),
),
);
}
}
class SignUpScreen extends StatefulWidget {
@override
_SignUpScreenState createState() => new _SignUpScreenState();
}
class _SignUpScreenState extends State<SignUpScreen> {
final GlobalKey<FormState> _formKey = new GlobalKey<FormState>();
User _user = new User();
final userService = new UserService(userPool);
void submit(BuildContext context) async {
_formKey.currentState.save();
String message;
bool signUpSuccess = false;
try {
_user = await userService.signUp(_user.email, _user.password, _user.name);
signUpSuccess = true;
message = 'User sign up successful!';
} on CognitoClientException catch (e) {
if (e.code == 'UsernameExistsException' ||
e.code == 'InvalidParameterException' ||
e.code == 'ResourceNotFoundException') {
message = e.message;
} else {
message = 'Unknown client error occurred';
}
} catch (e) {
message = 'Unknown error occurred';
}
final snackBar = new SnackBar(
content: new Text(message),
action: new SnackBarAction(
label: 'OK',
onPressed: () {
if (signUpSuccess) {
Navigator.pop(context);
if (!_user.confirmed) {
Navigator.push(
context,
new MaterialPageRoute(
builder: (context) =>
new ConfirmationScreen(email: _user.email)),
);
}
}
},
),
duration: new Duration(seconds: 30),
);
Scaffold.of(context).showSnackBar(snackBar);
}
@override
Widget build(BuildContext context) {
final Size screenSize = MediaQuery.of(context).size;
return new Scaffold(
appBar: new AppBar(
title: new Text('Sign Up'),
),
body: new Builder(
builder: (BuildContext context) {
return new Container(
child: new Form(
key: _formKey,
child: new ListView(
children: <Widget>[
new ListTile(
leading: const Icon(Icons.account_box),
title: new TextFormField(
decoration: new InputDecoration(labelText: 'Name'),
onSaved: (String name) {
_user.name = name;
},
),
),
new ListTile(
leading: const Icon(Icons.email),
title: new TextFormField(
decoration: new InputDecoration(
hintText: 'example@inspire.my', labelText: 'Email'),
keyboardType: TextInputType.emailAddress,
onSaved: (String email) {
_user.email = email;
},
),
),
new ListTile(
leading: const Icon(Icons.lock),
title: new TextFormField(
decoration: new InputDecoration(
hintText: 'Password!',
),
obscureText: true,
onSaved: (String password) {
_user.password = password;
},
),
),
new Container(
padding: new EdgeInsets.all(20.0),
width: screenSize.width,
child: new RaisedButton(
child: new Text(
'Sign Up',
style: new TextStyle(color: Colors.white),
),
onPressed: () {
submit(context);
},
color: Colors.blue,
),
margin: new EdgeInsets.only(
top: 10.0,
),
),
],
),
),
);
},
),
);
}
}
class ConfirmationScreen extends StatefulWidget {
ConfirmationScreen({Key key, this.email}) : super(key: key);
final String email;
@override
_ConfirmationScreenState createState() => new _ConfirmationScreenState();
}
class _ConfirmationScreenState extends State<ConfirmationScreen> {
final GlobalKey<FormState> _formKey = new GlobalKey<FormState>();
String confirmationCode;
User _user = new User();
final _userService = new UserService(userPool);
_submit(BuildContext context) async {
_formKey.currentState.save();
bool accountConfirmed;
String message;
try {
accountConfirmed =
await _userService.confirmAccount(_user.email, confirmationCode);
message = 'Account successfully confirmed!';
} on CognitoClientException catch (e) {
if (e.code == 'InvalidParameterException' ||
e.code == 'CodeMismatchException' ||
e.code == 'NotAuthorizedException' ||
e.code == 'UserNotFoundException' ||
e.code == 'ResourceNotFoundException') {
message = e.message;
} else {
message = 'Unknown client error occurred';
}
} catch (e) {
message = 'Unknown error occurred';
}
final snackBar = new SnackBar(
content: new Text(message),
action: new SnackBarAction(
label: 'OK',
onPressed: () {
if (accountConfirmed) {
Navigator.pop(context);
Navigator.push(
context,
new MaterialPageRoute(
builder: (context) => new LoginScreen(email: _user.email)),
);
}
},
),
duration: new Duration(seconds: 30),
);
Scaffold.of(context).showSnackBar(snackBar);
}
_resendConfirmation(BuildContext context) async {
_formKey.currentState.save();
String message;
try {
await _userService.resendConfirmationCode(_user.email);
message = 'Confirmation code sent to ${_user.email}!';
} on CognitoClientException catch (e) {
if (e.code == 'LimitExceededException' ||
e.code == 'InvalidParameterException' ||
e.code == 'ResourceNotFoundException') {
message = e.message;
} else {
message = 'Unknown client error occurred';
}
} catch (e) {
message = 'Unknown error occurred';
}
final snackBar = new SnackBar(
content: new Text(message),
action: new SnackBarAction(
label: 'OK',
onPressed: () {},
),
duration: new Duration(seconds: 30),
);
Scaffold.of(context).showSnackBar(snackBar);
}
@override
Widget build(BuildContext context) {
final Size screenSize = MediaQuery.of(context).size;
return new Scaffold(
appBar: new AppBar(
title: new Text('Confirm Account'),
),
body: new Builder(
builder: (BuildContext context) => new Container(
child: new Form(
key: _formKey,
child: new ListView(
children: <Widget>[
new ListTile(
leading: const Icon(Icons.email),
title: new TextFormField(
initialValue: widget.email,
decoration: new InputDecoration(
hintText: 'example@inspire.my',
labelText: 'Email'),
keyboardType: TextInputType.emailAddress,
onSaved: (String email) {
_user.email = email;
},
),
),
new ListTile(
leading: const Icon(Icons.lock),
title: new TextFormField(
decoration: new InputDecoration(
labelText: 'Confirmation Code'),
onSaved: (String code) {
confirmationCode = code;
},
),
),
new Container(
padding: new EdgeInsets.all(20.0),
width: screenSize.width,
child: new RaisedButton(
child: new Text(
'Submit',
style: new TextStyle(color: Colors.white),
),
onPressed: () {
_submit(context);
},
color: Colors.blue,
),
margin: new EdgeInsets.only(
top: 10.0,
),
),
new Center(
child: new InkWell(
child: new Text(
'Resend Confirmation Code',
style: new TextStyle(color: Colors.blueAccent),
),
onTap: () {
_resendConfirmation(context);
},
),
),
],
),
),
)),
);
}
}
class LoginScreen extends StatefulWidget {
LoginScreen({Key key, this.email}) : super(key: key);
final String email;
@override
_LoginScreenState createState() => new _LoginScreenState();
}
class _LoginScreenState extends State<LoginScreen> {
final GlobalKey<FormState> _formKey = new GlobalKey<FormState>();
final _userService = new UserService(userPool);
User _user = new User();
bool _isAuthenticated = false;
Future<UserService> _getValues() async {
await _userService.init();
_isAuthenticated = await _userService.checkAuthenticated();
return _userService;
}
submit(BuildContext context) async {
_formKey.currentState.save();
String message;
try {
_user = await _userService.login(_user.email, _user.password);
message = 'User sucessfully logged in!';
if (!_user.confirmed) {
message = 'Please confirm user account';
}
} on CognitoClientException catch (e) {
if (e.code == 'InvalidParameterException' ||
e.code == 'NotAuthorizedException' ||
e.code == 'UserNotFoundException' ||
e.code == 'ResourceNotFoundException') {
message = e.message;
} else {
message = 'An unknown client error occured';
}
} catch (e) {
message = 'An unknown error occurred';
}
final snackBar = new SnackBar(
content: new Text(message),
action: new SnackBarAction(
label: 'OK',
onPressed: () async {
if (_user.hasAccess) {
Navigator.pop(context);
if (!_user.confirmed) {
Navigator.push(
context,
new MaterialPageRoute(
builder: (context) =>
new ConfirmationScreen(email: _user.email)),
);
}
}
},
),
duration: new Duration(seconds: 30),
);
Scaffold.of(context).showSnackBar(snackBar);
}
@override
Widget build(BuildContext context) {
return new FutureBuilder(
future: _getValues(),
builder: (context, AsyncSnapshot<UserService> snapshot) {
if (snapshot.hasData) {
if (_isAuthenticated) {
return new SecureCounterScreen();
}
final Size screenSize = MediaQuery.of(context).size;
return new Scaffold(
appBar: new AppBar(
title: new Text('Login'),
),
body: new Builder(
builder: (BuildContext context) {
return new Container(
child: new Form(
key: _formKey,
child: new ListView(
children: <Widget>[
new ListTile(
leading: const Icon(Icons.email),
title: new TextFormField(
initialValue: widget.email,
decoration: new InputDecoration(
hintText: 'example@inspire.my',
labelText: 'Email'),
keyboardType: TextInputType.emailAddress,
onSaved: (String email) {
_user.email = email;
},
),
),
new ListTile(
leading: const Icon(Icons.lock),
title: new TextFormField(
decoration:
new InputDecoration(labelText: 'Password'),
obscureText: true,
onSaved: (String password) {
_user.password = password;
},
),
),
new Container(
padding: new EdgeInsets.all(20.0),
width: screenSize.width,
child: new RaisedButton(
child: new Text(
'Login',
style: new TextStyle(color: Colors.white),
),
onPressed: () {
submit(context);
},
color: Colors.blue,
),
margin: new EdgeInsets.only(
top: 10.0,
),
),
],
),
),
);
},
),
);
}
return new Scaffold(
appBar: new AppBar(title: new Text('Loading...')));
});
}
}
class SecureCounterScreen extends StatefulWidget {
SecureCounterScreen({Key key}) : super(key: key);
@override
_SecureCounterScreenState createState() => new _SecureCounterScreenState();
}
class _SecureCounterScreenState extends State<SecureCounterScreen> {
final _userService = new UserService(userPool);
CounterService _counterService;
AwsSigV4Client _awsSigV4Client;
User _user = new User();
Counter _counter = new Counter(0);
bool _isAuthenticated = false;
void _incrementCounter() async {
final counter = await _counterService.incrementCounter();
setState(() {
_counter = counter;
});
}
Future<UserService> _getValues(BuildContext context) async {
try {
await _userService.init();
_isAuthenticated = await _userService.checkAuthenticated();
if (_isAuthenticated) {
// get user attributes from cognito
_user = await _userService.getCurrentUser();
// get session credentials
final credentials = await _userService.getCredentials();
_awsSigV4Client = new AwsSigV4Client(
credentials.accessKeyId, credentials.secretAccessKey, _endpoint,
region: _region, sessionToken: credentials.sessionToken);
// get previous count
_counterService = new CounterService(_awsSigV4Client);
_counter = await _counterService.getCounter();
}
return _userService;
} on CognitoClientException catch (e) {
if (e.code == 'NotAuthorizedException') {
await _userService.signOut();
Navigator.pop(context);
}
throw e;
}
}
@override
Widget build(BuildContext context) {
return new FutureBuilder(
future: _getValues(context),
builder: (context, AsyncSnapshot<UserService> snapshot) {
if (snapshot.hasData) {
if (!_isAuthenticated) {
return new LoginScreen();
}
return new Scaffold(
appBar: new AppBar(
title: new Text('Secure Counter'),
),
body: new Center(
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
new Text(
'Welcome ${_user.name}!',
style: Theme.of(context).textTheme.display1,
),
new Divider(),
new Text(
'You have pushed the button this many times:',
),
new Text(
'${_counter.count}',
style: Theme.of(context).textTheme.display1,
),
new Divider(),
new Center(
child: new InkWell(
child: new Text(
'Logout',
style: new TextStyle(color: Colors.blueAccent),
),
onTap: () {
_userService.signOut();
Navigator.pop(context);
},
),
),
],
),
),
floatingActionButton: new FloatingActionButton(
onPressed: () {
if (snapshot.hasData) {
_incrementCounter();
}
},
tooltip: 'Increment',
child: new Icon(Icons.add),
),
);
}
return new Scaffold(
appBar: new AppBar(title: new Text('Loading...')));
});
}
}