Click on a logo to download the latest version of the app apk file:
Task Tracker is a Flutter productivity app for managing personal tasks with offline support, Firebase sync, localized UI, and scheduled local notifications.
- Email/password authentication with verification flow
- Onboarding for first-time users
- Task CRUD with categories, priorities, and reminder times
- Offline-first storage with Hive plus Firestore sync
- Theme switching: System, Light, Dark
- Localization: English and Hindi
- Profile, streaks, and leaderboard
- Local task reminders and overdue notifications
- Android battery optimization shortcut in Settings
- Login
- Sign up
- Forgot password
- Email verification
- Remember me support
- Create, edit, complete, incomplete, and delete tasks
- Optional description, priority, category, and reminder time
- Validation for reminder timing
- Sorting and filtering support
- Task reminder notification at
reminderAt - End-of-task notification at the task end time
- Daily overdue summary notification
- Global Task Reminders toggle in Settings
- Re-scheduling of active reminders when notifications are turned back on
- Android exact scheduling support for stronger idle-mode delivery
- Theme selection
- Language selection
- Task reminders on/off
- Battery optimization shortcut on Android
- Delete all tasks
- Hive for local task caching
- Firestore for cloud sync
- SharedPreferences for user preferences
- Secure storage for sensitive saved credentials
- App launches and initializes Firebase, storage, and notifications.
- Splash screen checks onboarding, login state, and email verification.
- User is routed to:
- Onboarding on first launch
- Login if signed out
- Email verification if account is not verified
- Home dashboard if authenticated and verified
- Home dashboard provides:
- Tasks
- Profile
- Leaderboard
- Settings
- Notifications are initialized during app startup.
- Reminder scheduling is timezone-aware.
- A task reminder is scheduled only if:
- the global notification toggle is enabled
- the task has a valid future reminder
- the task is not completed
- Completing or deleting a task cancels its scheduled notifications.
Battery optimization can delay or suppress notifications on some Android devices.
The app now includes a Battery Optimization entry in Settings:
- it reads the current optimization exemption status
- it opens the Android system battery optimization screen
- it helps the user whitelist the app for better notification reliability
Important:
- this setting cannot be silently changed by Flutter alone
- Android requires the user to confirm the change in system UI
- Flutter SDK
- Firebase project configured for Android/iOS
firebase_options.dartgoogle-services.jsonand/orGoogleService-Info.plist
git clone https://github.com/ArpitAswal/TaskTracker.git
cd TaskTracker
flutter pub get
flutter run- Flutter
- Provider
- Firebase Auth
- Cloud Firestore
- Hive
- SharedPreferences
- Flutter Secure Storage
- flutter_local_notifications
- timezone
- Android 13+ requires notification permission.
- Some Android versions/devices also require exact alarm approval for precise scheduling.
- Even with exact scheduling, aggressive OEM battery optimization may still delay alerts.
- The app provides a battery optimization settings shortcut, but the final permission change is system-controlled.
- The repository still contains a default sample widget test that does not reflect the real app bootstrap and will fail without Firebase-aware test setup.
Additional project documentation:
lib/app_flow_txtlib/app_implementation.text
These files have been updated to match the current production flow and feature set.
Contributions are welcome through issues and pull requests.
For feedback or bug reports, please use the repository issues or contact:
arpitaswal995@gmail.com