dartfmt pass

This commit is contained in:
anthonycicc 2018-05-19 14:52:54 -04:00
parent 07000c1709
commit c8a56f706c
4 changed files with 14 additions and 20 deletions

View file

@ -8,12 +8,11 @@ class Entry {
Entry(this.id, this.date, this.whatYouDid); Entry(this.id, this.date, this.whatYouDid);
Entry.fromJson(Map<String, dynamic> json) Entry.fromJson(Map<String, dynamic> json)
: id = json['id'], : id = json['id'],
date = DateTime.parse(json['date']), date = DateTime.parse(json['date']),
whatYouDid = json['whatyoudid']; whatYouDid = json['whatyoudid'];
Map<String, dynamic> toJson() => Map<String, dynamic> toJson() => {
{
'id': id, 'id': id,
'date': date.toString(), 'date': date.toString(),
'whatyoudid': whatYouDid, 'whatyoudid': whatYouDid,
@ -23,4 +22,4 @@ class Entry {
String toString() { String toString() {
return "${new DateFormat.yMMMMd().format(date)}: $whatYouDid"; return "${new DateFormat.yMMMMd().format(date)}: $whatYouDid";
} }
} }

View file

@ -38,5 +38,4 @@ class FileLoader {
throw OSError("File not found"); throw OSError("File not found");
} }
} }
}
}

View file

@ -31,15 +31,16 @@ class _NoZeroDaysState extends State<NoZeroDays> {
List<Entry> _zerodayslist = new List<Entry>.from(_firstEntry); List<Entry> _zerodayslist = new List<Entry>.from(_firstEntry);
void _newEntry(DateTime date, String whatyoudid){ void _newEntry(DateTime date, String whatyoudid) {
int highestID = 0; int highestID = 0;
for (var i = 0; i < _zerodayslist.length; ++i) { for (var i = 0; i < _zerodayslist.length; ++i) {
if (_zerodayslist[i].id > highestID){ if (_zerodayslist[i].id > highestID) {
highestID = _zerodayslist[i].id; highestID = _zerodayslist[i].id;
} }
} }
setState(() => _zerodayslist.add(new Entry(highestID + 1, date, whatyoudid))); setState(
() => _zerodayslist.add(new Entry(highestID + 1, date, whatyoudid)));
_save(); _save();
} }
@ -167,20 +168,16 @@ class _NoZeroDaysState extends State<NoZeroDays> {
// fast, so that you can just rebuild anything that needs updating rather // fast, so that you can just rebuild anything that needs updating rather
// than having to individually change instances of widgets. // than having to individually change instances of widgets.
return new Scaffold( return new Scaffold(
appBar: new AppBar( appBar: new AppBar(title: new Text(widget.title), actions: <Widget>[
title: new Text(widget.title), new IconButton(icon: new Icon(Icons.save), onPressed: _save),
actions: <Widget>[ new IconButton(icon: new Icon(Icons.file_upload), onPressed: _load),
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( body: new Scaffold(body: new ListView.builder(
itemBuilder: (context, entry) { itemBuilder: (context, entry) {
f.checkForFile().then((value) { f.checkForFile().then((value) {
if (value) { if (value) {
_load(); _load();
} } else {
else {
f.writeFile(""); f.writeFile("");
} }
}); });

View file

@ -1,4 +1,3 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:nomorezerodays/NoZeroDays.dart'; import 'package:nomorezerodays/NoZeroDays.dart';
@ -23,4 +22,4 @@ class MyApp extends StatelessWidget {
), ),
home: new Scaffold(body: new NoZeroDays(title: 'No Zero Days!'))); home: new Scaffold(body: new NoZeroDays(title: 'No Zero Days!')));
} }
} }