forked from AseemWangoo/flutter_programs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CapsuleButton.dart
80 lines (75 loc) · 2.53 KB
/
CapsuleButton.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
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(), // Default or main screen of the app
);
}
}
class UserOptions extends StatefulWidget {
@override
State<StatefulWidget> createState() {
return new UserOptionsState();
}
}
class UserOptionsState extends State<UserOptions> {
@override
Widget build(BuildContext context) {
return new Scaffold(
//backgroundColor: Colors.blueGrey,
body: new Center(
child: new Container(
child: new Column(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
new Builder(
builder: (BuildContext context) {
return new Material(
borderRadius: new BorderRadius.circular(30.0),
child: new Material(
elevation: 5.0,
child: new MaterialButton(
//padding: new EdgeInsets.all(16.0),
minWidth: 150.0,
onPressed: () {
Scaffold.of(context).showSnackBar(new SnackBar(
content: new Text('You clicked manual'),
));
},
child: new Text('Go manual'),
color: Colors.lightBlueAccent,
),
),
);
},
),
new Builder(
builder: (BuildContext context) {
return new Material(
borderRadius: new BorderRadius.circular(30.0),
child: new Material(
elevation: 5.0,
child: new MaterialButton(
minWidth: 150.0,
onPressed: () {
Scaffold.of(context).showSnackBar(new SnackBar(
content: new Text('You clicked pro'),
));
},
child: new Text('Go Pro'),
color: Colors.lightBlueAccent,
),
),
);
},
)
],
),
)),
);
}
}