forked from AseemWangoo/flutter_programs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vertical Buttons.dart
64 lines (60 loc) · 1.67 KB
/
Vertical Buttons.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
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 Center(
child: new Container(
child: new Column(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
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 manual'),
));
},
);
},
),
new Builder(
builder: (BuildContext context) {
return new RaisedButton(
child: new Text('Go Pro'),
onPressed: () {
Scaffold.of(context).showSnackBar(new SnackBar(
content: new Text('You clicked pro'),
));
},
);
},
)
],
),
)),
);
}
}