tasker
a simple todo app built with flutter.
screenshot | screenshot | screenshot |
---|---|---|
getting started with todo app
flutter create --androidx .
if android/ios folders aren’t present.flutter packages get
flutter run
concepts
- provider for simple state management.
- stream builder for reactive data.
- sqlite for persistence.
- uses moor as an abstraction layer on top of sqflite.
roadmap
- [x] option to add due date
- [x] option to tag user tasks
- [x] option to edit and delete tasks
– [x] swipe to delete
– [x] long press to edit - [ ] scheduled local notifications for tasks tagged as important and have a due date.
- [ ] option to edit tags
- [ ] publish to play store
- [ ] redesign ui to custom design. (not following material/cupertino)
icon/logo
- replace
assets/images/logo.png
with your own. - run
flutter pub pub run flutter_launcher_icons:main
to generate platform specific icons.
Comments are closed.