{"id":32725208,"url":"https://github.com/yousefelsonbaty/multitask_manager","last_synced_at":"2026-04-16T01:33:14.990Z","repository":{"id":320754110,"uuid":"1083245237","full_name":"yousefelsonbaty/multitask_manager","owner":"yousefelsonbaty","description":"A Mini Multitask Manager mobile Flutter application.","archived":false,"fork":false,"pushed_at":"2026-02-03T18:29:51.000Z","size":28704,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-29T20:58:59.680Z","etag":null,"topics":["apk","flutter","task-manager-app"],"latest_commit_sha":null,"homepage":"","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yousefelsonbaty.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-25T16:23:17.000Z","updated_at":"2026-02-03T18:31:46.000Z","dependencies_parsed_at":"2025-10-25T18:35:47.818Z","dependency_job_id":null,"html_url":"https://github.com/yousefelsonbaty/multitask_manager","commit_stats":null,"previous_names":["yousefelsonbaty/multitask_manager"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/yousefelsonbaty/multitask_manager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yousefelsonbaty%2Fmultitask_manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yousefelsonbaty%2Fmultitask_manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yousefelsonbaty%2Fmultitask_manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yousefelsonbaty%2Fmultitask_manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yousefelsonbaty","download_url":"https://codeload.github.com/yousefelsonbaty/multitask_manager/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yousefelsonbaty%2Fmultitask_manager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31867711,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"ssl_error","status_checked_at":"2026-04-15T15:24:39.138Z","response_time":63,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["apk","flutter","task-manager-app"],"created_at":"2025-11-03T01:01:40.049Z","updated_at":"2026-04-16T01:33:14.969Z","avatar_url":"https://github.com/yousefelsonbaty.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Mini Multitask Manager\n\nThis is a small Flutter app implementing a Mini Multitask Manager.\n\n## Getting Started\n\nThis project is a starting point for a Flutter application.\n\nA few resources to get you started if this is your first Flutter project:\n\n- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)\n- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)\n\nFor help getting started with Flutter development, view the [online documentation](https://docs.flutter.dev/), which offers tutorials, samples, guidance on mobile development, and a full API reference.\n\n## Features\n\n### Main features\n\n- Add, edit and delete tasks\n- Mark tasks as completed\n- Filter by All / Active / Completed\n- Store tasks locally in a JSON file (using `path_provider`)\n- Simple due date picker\n\n### Extra features\n\n- Prevent saving a task with a duplicate title (case-insensitive)\n- Warning badge when a task is due in 1 day (\"1 day left\")\n- Overdue marker shown when the due date has passed (red \"Overdue\" pill)\n- Search tasks (quick in-list search)\n\n## Files added/changed\n\n- `lib/models/task.dart` — Task model with JSON serialization\n- `lib/services/task_storage.dart` — local JSON storage using `getApplicationDocumentsDirectory()`\n- `lib/task_manager_app.dart` — main UI (tasks list, add/edit dialog, filter)\n- `lib/main.dart` — small launcher that runs the app\n- `pubspec.yaml` — added `path_provider` dependency\n- `data/tasks.json` — example local tasks JSON file (sample data: overdue, due tomorrow, no due date)\n - `data/tasks.json` — example local tasks JSON file (sample data: overdue, due tomorrow, on-time)\n\nNote: For the sample JSON included here the `title` and `dueDate` fields are required (non-null). The app's `TaskStorage` will expect tasks to include these fields when loading sample data.\n - `pubspec.yaml` — added `data/tasks.json` to assets so the app bundles the sample data\n\n## How to run\n\n1. Ensure Flutter is installed and on your PATH.\n2. From the project root run:\n\n```powershell\nflutter pub get\nflutter run\n```\n\nIf you cloned the repository elsewhere, or want to get it fresh from a remote repository, you can run:\n\n```powershell\ngit clone https://github.com/yousefelsonbaty/multitask_manager.git  \ncd multitask_manager\n# then:\nflutter pub get\nflutter run\n```\n\n## Notes\n\n- The app stores tasks in the app documents directory in a file named `tasks.json`.\n- The widget test was updated to use `TaskManagerApp` and verifies the app bar title.\n- To take screenshots, run the app on an emulator or device and capture the screen.\n\n## Possible improvements (optional)\n\n- Improve UI styling and animations\n- Add unit tests for `TaskStorage` (mock filesystem or use integration tests)\n\n## Build APK (Android)\n\nYou can produce an Android APK for distribution or sideloading. The commands below are PowerShell-friendly and assume you have Flutter and the Android toolchain installed.\n\nBuild a release APK (optimized):\n\n```powershell\nflutter build apk --release\n```\n\nBuild a debug APK (useful for quick testing):\n\n```powershell\nflutter build apk --debug\n```\n\nWhere the APK is written:\n\n```\nreleases/MiniTask-App-debug.apk\n```\n\nI built a debug APK and placed a copy in the repository under `releases/` (so you can download it directly from this clone):\n\n[Download MiniTask debug APK](./releases/MiniTask-App-debug.apk) — 143,706,828 bytes (≈137.0 MB), SHA-256: 814B66B6C5E374309018CE529FB617C3698EF3ECB253BC97FF395F077869D046\n\nInstall the APK onto a connected device or emulator:\n\n```powershell\nadb install -r build\\app\\outputs\\flutter-apk\\app-release.apk\n# or using Flutter (installs a debug build by default):\nflutter install\n```\n\nNotes on signing and Play Store releases:\n- A release APK intended for Play Store must be signed with your keystore. Follow the Flutter docs to create a keystore and configure signing in `android/app/build.gradle` / `key.properties`: https://docs.flutter.dev/deployment/android\n- For Play Store distribution you may prefer to build an Android App Bundle instead:\n\n```powershell\nflutter build appbundle --release\n```\n\n## Demo\n\nA short demo video is included with this repository: [MiniTask_Demo.mp4](./MiniTask_Demo.mp4)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyousefelsonbaty%2Fmultitask_manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyousefelsonbaty%2Fmultitask_manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyousefelsonbaty%2Fmultitask_manager/lists"}