Comment by perrii
I've been working on TYR (Track Your Routine), a Flutter-based task and routine tracking app. It's open source and built with Firebase for auth and data sync.
Key features: - Task creation with date/time scheduling - Local notifications for reminders - Real-time sync across devices via Firestore - Category-based organization (work, vacation, events) - Clean dark theme UI with Material Design 3
Tech stack: Flutter/Dart, Firebase Auth, Cloud Firestore, local notifications.
The app is still under active development, but the core functionality is working. I built it to solve my own need for a simple, privacy-focused task tracker that works across platforms (Android, iOS, Web, Desktop).
What I'd love feedback on: - The notification system implementation - UI/UX improvements - Feature suggestions - Code quality and architecture (it's my first larger Flutter project)
The codebase is MIT licensed and contributions are welcome. I'm particularly interested in feedback from Flutter developers on best practices I might be missing.
GitHub: https://github.com/MSF01/TYR
What do you think? What features would make this more useful for your workflow?
> It's open source and built with Firebase for auth and data sync.
Consider also supporting remoteStorage <http://remotestorage.org/>, both so that you don't have to operate (admin/provision/whatever) services, and to make it easier for contributors (they don't need to prop something up, either, even if it is just Firebase). And just general user control over data.
If you run into any serious issues, you're likely to get a fair bit of interest on the remoteStorage community message boards to help work things out.
PS: add screenshots somewhere.