improved layout of month practice setup page a bit
This commit is contained in:
parent
8e64a87631
commit
8bb558e3f4
1 changed files with 30 additions and 24 deletions
|
@ -18,9 +18,14 @@ class _MonthPracticeSetupState extends State<MonthPracticeSetupPage> {
|
||||||
title: Text("Practice Months"),
|
title: Text("Practice Months"),
|
||||||
),
|
),
|
||||||
body: Center(
|
body: Center(
|
||||||
|
child: new Container(
|
||||||
|
padding: EdgeInsets.all(20),
|
||||||
child: new Column(
|
child: new Column(
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
new Text("How many times would you like to practice?"),
|
new Text(
|
||||||
|
"How many rounds?",
|
||||||
|
style: TextStyle(fontSize: 30),
|
||||||
|
),
|
||||||
new NumberPicker.integer(
|
new NumberPicker.integer(
|
||||||
initialValue: _count,
|
initialValue: _count,
|
||||||
minValue: 1,
|
minValue: 1,
|
||||||
|
@ -44,6 +49,7 @@ class _MonthPracticeSetupState extends State<MonthPracticeSetupPage> {
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue