From 2b70494194896b6691de60bca35a23eea31397e3 Mon Sep 17 00:00:00 2001 From: anthonycicc Date: Sat, 12 May 2018 15:36:57 -0400 Subject: [PATCH] Fixes error on no-date-selected --- lib/NoZeroDays.dart | 29 +++++++++++++++++++---------- 1 file changed, 19 insertions(+), 10 deletions(-) diff --git a/lib/NoZeroDays.dart b/lib/NoZeroDays.dart index 96bae15..9e3abf4 100644 --- a/lib/NoZeroDays.dart +++ b/lib/NoZeroDays.dart @@ -79,11 +79,18 @@ class _NoZeroDaysState extends State { firstDate: new DateTime(DateTime.now().year), lastDate: new DateTime(DateTime.now().year + 1)); newDate.then((newValue) { - setState(() { - _zerodayslist.remove(entry); - _zerodayslist.add(new Entry(newValue, entry.whatYouDid)); - }); + if (newValue != null) { + setState(() { + _zerodayslist.remove(entry); + _zerodayslist + .add(new Entry(newValue, entry.whatYouDid)); + }); + } + ; Navigator.pop(context); + }).catchError((err) { + Scaffold.of(context).showSnackBar( + new SnackBar(content: new Text(err.toString()))); }); }), new TextFormField( @@ -102,12 +109,14 @@ class _NoZeroDaysState extends State { return new Scaffold( appBar: new AppBar(title: new Text("Edit this entry")), body: t, - floatingActionButton: new FloatingActionButton(onPressed: () { - setState(() {_zerodayslist.remove(entry); }); - Navigator.pop(context); - }, - child: new Icon(Icons.delete) - ), + floatingActionButton: new FloatingActionButton( + onPressed: () { + setState(() { + _zerodayslist.remove(entry); + }); + Navigator.pop(context); + }, + child: new Icon(Icons.delete)), ); })); }