merge-update-with-lab-changes
hussam al-habibeh 5 years ago
parent 29249dc9a9
commit 352fd912de

@ -314,14 +314,17 @@ class _BodyFatState extends State<BodyFat> {
children: <Widget>[ children: <Widget>[
Expanded( Expanded(
child: Center( child: Center(
child: TextFormField( child: Padding(
keyboardType: TextInputType.number, padding: const EdgeInsets.only(left: 10.0),
controller: heightController, child: TextFormField(
decoration: InputDecoration( keyboardType: TextInputType.number,
labelText: heightCm.toString(), controller: heightController,
labelStyle: TextStyle( decoration: InputDecoration(
color: Colors.black, labelText: heightCm.toString(),
)), labelStyle: TextStyle(
color: Colors.black,
)),
),
), ),
), ),
), ),
@ -488,14 +491,17 @@ class _BodyFatState extends State<BodyFat> {
children: <Widget>[ children: <Widget>[
Expanded( Expanded(
child: Center( child: Center(
child: TextFormField( child: Padding(
keyboardType: TextInputType.number, padding: const EdgeInsets.only(left: 10.0),
controller: neckController, child: TextFormField(
decoration: InputDecoration( keyboardType: TextInputType.number,
labelText: neck.toString(), controller: neckController,
labelStyle: TextStyle( decoration: InputDecoration(
color: Colors.black, labelText: neck.toString(),
)), labelStyle: TextStyle(
color: Colors.black,
)),
),
), ),
), ),
), ),
@ -662,14 +668,17 @@ class _BodyFatState extends State<BodyFat> {
children: <Widget>[ children: <Widget>[
Expanded( Expanded(
child: Center( child: Center(
child: TextFormField( child: Padding(
keyboardType: TextInputType.number, padding: const EdgeInsets.only(left: 10.0),
controller: waistController, child: TextFormField(
decoration: InputDecoration( keyboardType: TextInputType.number,
labelText: waist.toString(), controller: waistController,
labelStyle: TextStyle( decoration: InputDecoration(
color: Colors.black, labelText: waist.toString(),
)), labelStyle: TextStyle(
color: Colors.black,
)),
),
), ),
), ),
), ),
@ -836,14 +845,17 @@ class _BodyFatState extends State<BodyFat> {
children: <Widget>[ children: <Widget>[
Expanded( Expanded(
child: Center( child: Center(
child: TextFormField( child: Padding(
keyboardType: TextInputType.number, padding: const EdgeInsets.only(left: 10.0),
controller: hipController, child: TextFormField(
decoration: InputDecoration( keyboardType: TextInputType.number,
labelText: hip.toString(), controller: hipController,
labelStyle: TextStyle( decoration: InputDecoration(
color: Colors.black, labelText: hip.toString(),
)), labelStyle: TextStyle(
color: Colors.black,
)),
),
), ),
), ),
), ),

Loading…
Cancel
Save