Commit 4aa7aca
Changed files (2)
lib
screens
test
ui
components
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
});
}