Commit 4aa7aca

derdilla <82763757+NobodyForNothing@users.noreply.github.com>
2023-11-11 13:26:46
fix todo
Signed-off-by: derdilla <82763757+NobodyForNothing@users.noreply.github.com>
1 parent b94d872
Changed files (2)
lib
screens
test
lib/screens/home.dart
@@ -46,9 +46,8 @@ class AppHome extends StatelessWidget {
           );
         }
         return Center(
-          child: Container(
-            // TODO: utilize more of the screen width
-            padding: const EdgeInsets.only(left: 10, right: 10, bottom: 15, top: 30),
+          child: Padding(
+            padding: const EdgeInsets.only(top: 20),
             child: Consumer<Settings>(
               builder: (context, settings, child) {
                 return Column(children: [
test/ui/components/add_measurement_dialoge_test.dart
@@ -86,6 +86,7 @@ void main() {
           'should return initial values as they were not modified',
           (record.creationTime, record.systolic, record.diastolic, record.pulse, record.notes, record.needlePin!.color)));
     });
+    // TODO: test inputting values
   });
 }