From c8a56f706c1c579fd5a347397b8f40542968571d Mon Sep 17 00:00:00 2001 From: anthonycicc Date: Sat, 19 May 2018 14:52:54 -0400 Subject: [PATCH] dartfmt pass --- lib/Entry.dart | 7 +++---- lib/FileLoader.dart | 3 +-- lib/NoZeroDays.dart | 21 +++++++++------------ lib/main.dart | 3 +-- 4 files changed, 14 insertions(+), 20 deletions(-) diff --git a/lib/Entry.dart b/lib/Entry.dart index bf63027..ca14779 100644 --- a/lib/Entry.dart +++ b/lib/Entry.dart @@ -8,12 +8,11 @@ class Entry { Entry(this.id, this.date, this.whatYouDid); Entry.fromJson(Map json) - : id = json['id'], + : id = json['id'], date = DateTime.parse(json['date']), whatYouDid = json['whatyoudid']; - Map toJson() => - { + Map toJson() => { 'id': id, 'date': date.toString(), 'whatyoudid': whatYouDid, @@ -23,4 +22,4 @@ class Entry { String toString() { return "${new DateFormat.yMMMMd().format(date)}: $whatYouDid"; } -} \ No newline at end of file +} diff --git a/lib/FileLoader.dart b/lib/FileLoader.dart index 1db19db..cc008af 100644 --- a/lib/FileLoader.dart +++ b/lib/FileLoader.dart @@ -38,5 +38,4 @@ class FileLoader { throw OSError("File not found"); } } - -} \ No newline at end of file +} diff --git a/lib/NoZeroDays.dart b/lib/NoZeroDays.dart index cfaa4a6..c0ec6f4 100644 --- a/lib/NoZeroDays.dart +++ b/lib/NoZeroDays.dart @@ -31,15 +31,16 @@ class _NoZeroDaysState extends State { List _zerodayslist = new List.from(_firstEntry); - void _newEntry(DateTime date, String whatyoudid){ + void _newEntry(DateTime date, String whatyoudid) { int highestID = 0; for (var i = 0; i < _zerodayslist.length; ++i) { - if (_zerodayslist[i].id > highestID){ + if (_zerodayslist[i].id > highestID) { highestID = _zerodayslist[i].id; } } - setState(() => _zerodayslist.add(new Entry(highestID + 1, date, whatyoudid))); + setState( + () => _zerodayslist.add(new Entry(highestID + 1, date, whatyoudid))); _save(); } @@ -167,20 +168,16 @@ class _NoZeroDaysState extends State { // fast, so that you can just rebuild anything that needs updating rather // than having to individually change instances of widgets. return new Scaffold( - appBar: new AppBar( - title: new Text(widget.title), - actions: [ - new IconButton(icon: new Icon(Icons.save), onPressed: _save), - new IconButton(icon: new Icon(Icons.file_upload), onPressed: _load), - ] - ), + appBar: new AppBar(title: new Text(widget.title), actions: [ + new IconButton(icon: new Icon(Icons.save), onPressed: _save), + new IconButton(icon: new Icon(Icons.file_upload), onPressed: _load), + ]), body: new Scaffold(body: new ListView.builder( itemBuilder: (context, entry) { f.checkForFile().then((value) { if (value) { _load(); - } - else { + } else { f.writeFile(""); } }); diff --git a/lib/main.dart b/lib/main.dart index 414aa6b..e6d43f3 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -1,4 +1,3 @@ - import 'package:flutter/material.dart'; import 'package:nomorezerodays/NoZeroDays.dart'; @@ -23,4 +22,4 @@ class MyApp extends StatelessWidget { ), home: new Scaffold(body: new NoZeroDays(title: 'No Zero Days!'))); } -} \ No newline at end of file +}