Compare commits

...
Sign in to create a new pull request.

8 commits

Author SHA1 Message Date
c415a2d139
Merge pull request #13 from AYM1607/dependabot/npm_and_yarn/functions/lodash.merge-4.6.2
Bump lodash.merge from 4.6.1 to 4.6.2 in /functions
2019-07-14 15:04:00 -05:00
80e5f26ec1
Merge pull request #12 from AYM1607/dependabot/npm_and_yarn/functions/lodash-4.17.14
Bump lodash from 4.17.11 to 4.17.14 in /functions
2019-07-14 15:03:48 -05:00
dependabot[bot]
bb72a561dd
Bump lodash.merge from 4.6.1 to 4.6.2 in /functions
Bumps [lodash.merge](https://github.com/lodash/lodash) from 4.6.1 to 4.6.2.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/commits)

Signed-off-by: dependabot[bot] <support@github.com>
2019-07-14 20:00:32 +00:00
dependabot[bot]
c40a7b6bac
Bump lodash from 4.17.11 to 4.17.14 in /functions
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.11 to 4.17.14.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/compare/4.17.11...4.17.14)

Signed-off-by: dependabot[bot] <support@github.com>
2019-07-14 20:00:08 +00:00
ffb6fb4870 Added gif for full screen gallery 2019-06-04 12:48:33 -05:00
e7b4d0698b Updated readme with functionality and gifs 2019-06-03 23:43:09 -05:00
143d0315ee Added first video to readme 2019-06-03 22:56:42 -05:00
78fe8080d6 Fixed unused import error 2019-04-28 18:47:20 -05:00
3 changed files with 44 additions and 8 deletions

View file

@ -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

View file

@ -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": {

View file

@ -1,5 +1,3 @@
import 'dart:async';
import 'package:rxdart/rxdart.dart';
import '../utils.dart' show kTaskListPriorityTransforemer;