Fixes error on no-date-selected

This commit is contained in:
anthonycicc 2018-05-12 15:36:57 -04:00
parent a9e6ae2f34
commit 2b70494194

View file

@ -79,11 +79,18 @@ class _NoZeroDaysState extends State<NoZeroDays> {
firstDate: new DateTime(DateTime.now().year), firstDate: new DateTime(DateTime.now().year),
lastDate: new DateTime(DateTime.now().year + 1)); lastDate: new DateTime(DateTime.now().year + 1));
newDate.then((newValue) { newDate.then((newValue) {
setState(() { if (newValue != null) {
_zerodayslist.remove(entry); setState(() {
_zerodayslist.add(new Entry(newValue, entry.whatYouDid)); _zerodayslist.remove(entry);
}); _zerodayslist
.add(new Entry(newValue, entry.whatYouDid));
});
}
;
Navigator.pop(context); Navigator.pop(context);
}).catchError((err) {
Scaffold.of(context).showSnackBar(
new SnackBar(content: new Text(err.toString())));
}); });
}), }),
new TextFormField( new TextFormField(
@ -102,12 +109,14 @@ class _NoZeroDaysState extends State<NoZeroDays> {
return new Scaffold( return new Scaffold(
appBar: new AppBar(title: new Text("Edit this entry")), appBar: new AppBar(title: new Text("Edit this entry")),
body: t, body: t,
floatingActionButton: new FloatingActionButton(onPressed: () { floatingActionButton: new FloatingActionButton(
setState(() {_zerodayslist.remove(entry); }); onPressed: () {
Navigator.pop(context); setState(() {
}, _zerodayslist.remove(entry);
child: new Icon(Icons.delete) });
), Navigator.pop(context);
},
child: new Icon(Icons.delete)),
); );
})); }));
} }