From 4e030c6dd45771680b466c7acd9c85a939c572ba Mon Sep 17 00:00:00 2001 From: Tylerdotpy Date: Tue, 15 Dec 2020 23:37:46 -0500 Subject: [PATCH] Fixed Issues noted in #2 --- my_bmi/BMI/bmi/lib/main.dart | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/my_bmi/BMI/bmi/lib/main.dart b/my_bmi/BMI/bmi/lib/main.dart index 32da44e..692568c 100644 --- a/my_bmi/BMI/bmi/lib/main.dart +++ b/my_bmi/BMI/bmi/lib/main.dart @@ -62,7 +62,8 @@ class _MyHomePageState extends State { appBar: AppBar( title: Text(widget.title), ), - body: new Container( + body: new SingleChildScrollView( + child:Container( padding: const EdgeInsets.only(left: 40, right: 40, top: 20), decoration: BoxDecoration( // color: Colors.blueGrey, @@ -126,7 +127,7 @@ class _MyHomePageState extends State { new Row( children: [ new Container( - width: 165.0, + width: 155.0, child: Text( "$status", style: TextStyle( @@ -150,6 +151,6 @@ class _MyHomePageState extends State { ], ) ], - ))); + )))); } }