File tree 1 file changed +5
-12
lines changed
1 file changed +5
-12
lines changed Original file line number Diff line number Diff line change @@ -22,22 +22,15 @@ class UserOptions extends StatefulWidget {
22
22
23
23
class UserOptionsState extends State <UserOptions > {
24
24
@override
25
- Widget build (BuildContext context) {
26
- // return new Container(
27
- // child: new Column(
28
- // children: <Widget>[
29
- // new Text('data'),
30
- // new Text('data')
31
- // ],
32
- // ),
33
- // ); for 2 buttons vertically without Mat. UI
34
-
25
+ Widget build (BuildContext context) {
35
26
return new Scaffold (
36
27
appBar: new AppBar (
37
28
title: new Text ('data' ),
38
29
),
39
- body: new Container (
30
+ body: new Center (
31
+ child: new Container (
40
32
child: new Column (
33
+ mainAxisAlignment: MainAxisAlignment .spaceEvenly,
41
34
children: < Widget > [
42
35
new Builder (
43
36
builder: (BuildContext context) {
@@ -65,7 +58,7 @@ class UserOptionsState extends State<UserOptions> {
65
58
)
66
59
],
67
60
),
68
- ),
61
+ )) ,
69
62
);
70
63
}
71
64
}
You can’t perform that action at this time.
0 commit comments