-
Notifications
You must be signed in to change notification settings - Fork 225
/
snackbar.dart
63 lines (59 loc) · 1.64 KB
/
snackbar.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
import 'package:flutter/material.dart';
void main() {
runApp(new MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
home: new UserOptions(),
);
}
}
class UserOptions extends StatefulWidget {
@override
State<StatefulWidget> createState() {
return new UserOptionsState();
}
}
class UserOptionsState extends State<UserOptions> {
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
title: new Text('data'),
),
// body: new RaisedButton(
// child: const Text('Go manual'),
// onPressed: () {
// Scaffold.of(context).showSnackBar(new SnackBar(
// content: new Text('data'),
// ));
// },
// ), //unable to fetch the context
// body: new Builder(
// builder: (BuildContext context) {
// new RaisedButton(
// onPressed: () {
// Scaffold.of(context).showSnackBar(new SnackBar(
// content: new Text('You clicked me'),
// ));
// },
// );
// },
// ), builder function must never return null
body: new Builder(
builder: (BuildContext context) {
return new RaisedButton(
child: new Text('Go manual'),
onPressed: () {
Scaffold.of(context).showSnackBar(new SnackBar(
content: new Text('You clicked me'),
));
},
);
},
),
);
}
}