countdown
a simple countdown tracker app. it allows you to create, modify and delete upcoming and past countdowns.
persistence
when creating countdowns, the raw data is persisted on the local system as .json file.
on linux it is stored in ~/documents/countdowns.json.
how to build it
on ios
open project on your mac in xcode and build & run the app on a target device.
on linux
run flutter build linux
, which will create a build
directory under the project root.
from there, you can simply run the application by running
build/linux/release/bundle/countdown
also, you could ship the application to other users by making a zip, like this
zip -r countdown_release.zip build/linux/release/bundle/
todos
- [x] fix id handling (currently it is just a random int)
- [x] use swiping to delete countdowns
- [x] make datetime picker nicer
- [x] show countdown datetime in subtitle
- [x] allow to edit countdowns
- [ ] allow to chose any icon
- [ ] fix seconds refresh sync (because of ms update is not happening in sync)
- [ ] make color of card dynamic based on how time left
Comments are closed.