Fixes error on no-date-selected
This commit is contained in:
parent
a9e6ae2f34
commit
2b70494194
1 changed files with 19 additions and 10 deletions
|
@ -79,11 +79,18 @@ class _NoZeroDaysState extends State<NoZeroDays> {
|
|||
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<NoZeroDays> {
|
|||
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)),
|
||||
);
|
||||
}));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue