From e54e8b7bebee7a46147ede3f55c44fcb6efa5b2d Mon Sep 17 00:00:00 2001 From: anthonycicc Date: Sat, 12 May 2018 14:39:35 -0400 Subject: [PATCH] Still can't edit both parts, but reformatted and added delete functionality --- lib/NoZeroDays.dart | 82 +++++++++++++++++++++++---------------------- 1 file changed, 42 insertions(+), 40 deletions(-) diff --git a/lib/NoZeroDays.dart b/lib/NoZeroDays.dart index 9a7c0b8..2cbad35 100644 --- a/lib/NoZeroDays.dart +++ b/lib/NoZeroDays.dart @@ -66,46 +66,48 @@ class _NoZeroDaysState extends State { } void _editEntry(Entry entry) { - Navigator.of(context).push( - new MaterialPageRoute( - builder: (context) { - final t = new Form( - child: new Column( - children: [ - new IconButton(icon: new Icon(Icons.date_range), onPressed: - () { - Future newDate = showDatePicker( - context: (context), - initialDate: entry.date, - 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)); - }); + Navigator.of(context).push(new MaterialPageRoute(builder: (context) { + final t = new Form( + child: new Column( + children: [ + new IconButton( + icon: new Icon(Icons.date_range), + onPressed: () { + Future newDate = showDatePicker( + context: (context), + initialDate: entry.date, + 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)); }); - }), - new TextFormField( - initialValue: entry.whatYouDid, - onFieldSubmitted: (newValue) { - setState((){ - _zerodayslist.remove(entry); - _zerodayslist.add(new Entry(entry.date, newValue)); - }); - }, - ) - ], - ), - ); - return new Scaffold( - appBar: new AppBar(title: new Text("Edit this entry")), - body: t, - ); - }) - ); + }); + }), + new TextFormField( + initialValue: entry.whatYouDid, + onFieldSubmitted: (newValue) { + setState(() { + _zerodayslist.remove(entry); + _zerodayslist.add(new Entry(entry.date, newValue)); + }); + }, + ), + ], + ), + ); + 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) + ), + ); + })); } @override @@ -131,4 +133,4 @@ class _NoZeroDaysState extends State { floatingActionButton: _buildFAB(), ); } -} \ No newline at end of file +}