diff --git a/README.md b/README.md index 5ad39af..7c6fee4 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,44 @@ A glorified todo list with a beautiful ui. +## Login with Google +![](https://j.gifs.com/QnO9J5.gif) + +## Events +Organize your tasks by events, visualize them in their page and add new ones specifying their occurrence. + +![](https://j.gifs.com/ANm3qj.gif) + +## Tasks +Add new tasks from the main screen, specify the event they belong to and their priority. + +![](https://j.gifs.com/Mw9381.gif) + +Filter your tasks by name or by event name. + +![](https://j.gifs.com/QnO9W5.gif) + +Mark tasks as done and recover them from the archive section. + +![](https://j.gifs.com/k8oqRv.gif) + +Edit tasks. + +![](https://j.gifs.com/k8oqRJ.gif) + +## Media +Add pictures from the main screen and link them to an event, both thumbnails and full-size images are locally cached for faster subsequent access. + +![](https://j.gifs.com/wVkJjr.gif) + +Gallery screen for every event with thumbnails of all your images. + +![](https://j.gifs.com/BNn3gQ.gif) + +Full screen gallery. + +![](https://j.gifs.com/OMZAJr.gif) + ## Roadmap https://trello.com/b/zdKMw2JL/do diff --git a/functions/package-lock.json b/functions/package-lock.json index 77b2dbd..8e3cde1 100644 --- a/functions/package-lock.json +++ b/functions/package-lock.json @@ -2188,9 +2188,9 @@ } }, "lodash": { - "version": "4.17.11", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz", - "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==" + "version": "4.17.14", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.14.tgz", + "integrity": "sha512-mmKYbW3GLuJeX+iGP+Y7Gp1AiGHGbXHCOh/jZmrawMmsE7MS4znI3RL2FsjbqOyMayHInjOeykW7PEajUk1/xw==" }, "lodash.at": { "version": "4.6.0", @@ -2247,9 +2247,9 @@ "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" }, "lodash.merge": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.1.tgz", - "integrity": "sha512-AOYza4+Hf5z1/0Hztxpm2/xiPZgi/cjMqdnKTUWTBSKchJlxXXuUSxCCl8rJlf4g6yww/j6mA8nC8Hw/EZWxKQ==", + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "optional": true }, "lodash.once": { diff --git a/lib/src/blocs/archive_bloc.dart b/lib/src/blocs/archive_bloc.dart index ffe4651..1ff9255 100644 --- a/lib/src/blocs/archive_bloc.dart +++ b/lib/src/blocs/archive_bloc.dart @@ -1,5 +1,3 @@ -import 'dart:async'; - import 'package:rxdart/rxdart.dart'; import '../utils.dart' show kTaskListPriorityTransforemer;