{"id":31134288,"url":"https://github.com/heartthanakorn/flutter-activity-manager","last_synced_at":"2026-05-07T10:31:10.956Z","repository":{"id":314160427,"uuid":"1054422739","full_name":"HeartThanakorn/flutter-activity-manager","owner":"HeartThanakorn","description":"A simple Flutter app for managing daily activities. Add, view, filter, and delete activities with a clean UI and Provider state management. Perfect for learning Flutter basics.","archived":false,"fork":false,"pushed_at":"2025-09-11T07:47:13.000Z","size":58,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-09-18T06:54:11.753Z","etag":null,"topics":["activity","android","dart","example","flutter","ios","learning","mobile","productivity","provider","state-management","todo"],"latest_commit_sha":null,"homepage":"","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/HeartThanakorn.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-09-10T20:13:02.000Z","updated_at":"2025-09-11T07:47:17.000Z","dependencies_parsed_at":"2025-09-11T00:21:47.602Z","dependency_job_id":"bd7b3089-fe84-49c2-9cd6-16d1e5d3fb9d","html_url":"https://github.com/HeartThanakorn/flutter-activity-manager","commit_stats":null,"previous_names":["heartthanakorn/flutter-activity-manager"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/HeartThanakorn/flutter-activity-manager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HeartThanakorn%2Fflutter-activity-manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HeartThanakorn%2Fflutter-activity-manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HeartThanakorn%2Fflutter-activity-manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HeartThanakorn%2Fflutter-activity-manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HeartThanakorn","download_url":"https://codeload.github.com/HeartThanakorn/flutter-activity-manager/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HeartThanakorn%2Fflutter-activity-manager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32733375,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-07T02:14:30.463Z","status":"ssl_error","status_checked_at":"2026-05-07T02:14:29.405Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["activity","android","dart","example","flutter","ios","learning","mobile","productivity","provider","state-management","todo"],"created_at":"2025-09-18T06:51:29.008Z","updated_at":"2026-05-07T10:31:10.934Z","avatar_url":"https://github.com/HeartThanakorn.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Activity Manager\n\nA Flutter application for managing daily activity lists. Helps you add, display, and filter activities by time easily.\n\n## Key Features\n\n- 📝 **Add Activities**: Add new activities with name, description, and time\n- 📋 **Display List**: Show activity list sorted by time\n- 🔍 **Filter Data**: Show only activities after 18:00\n- ✅ **Data Validation**: Validate input data accuracy\n- 🗑️ **Delete Activities**: Remove unwanted activities\n\n## System Requirements\n\n- **Flutter**: 3.10.0 or higher\n- **Dart**: 3.0.0 or higher\n- **Android**: API level 21 or higher\n- **iOS**: 11.0 or higher\n\n## Installation and Running the App\n\n### 1. Clone the project\n\n```bash\ngit clone \u003crepository-url\u003e\ncd activity_manager\n```\n\n### 2. Install dependencies\n\n```bash\nflutter pub get\n```\n\n### 3. Run the app\n\n```bash\n# Run on emulator/simulator or real device\nflutter run\n\n# Or run in debug mode\nflutter run --debug\n\n# Run in release mode (for performance testing)\nflutter run --release\n```\n\n### 4. Build APK for Android\n\n```bash\n# Build debug APK\nflutter build apk --debug\n\n# Build release APK\nflutter build apk --release\n```\n\nThe built APK will be in `build/app/outputs/flutter-apk/`\n\n## Project Structure\n\n```\nlib/\n├── main.dart                    # App entry point\n├── models/\n│   └── activity.dart           # Activity data model\n├── providers/\n│   └── activity_provider.dart  # State management with Provider\n├── screens/\n│   └── home_screen.dart        # Main screen\n└── widgets/\n    ├── activity_item.dart      # Widget for displaying activity list\n    └── add_activity_dialog.dart # Dialog for adding activities\n```\n\n## Provider State Management\n\nI chose **Provider** as the state management solution because:\n\n### Advantages:\n\n- **Easy to learn**: Not too steep learning curve\n- **Suitable for small projects**: Not overly complex for apps with minimal state\n- **Business logic separation**: Clear separation between UI and business logic\n- **Good performance**: Selective rebuild helps UI update only changed parts\n- **Community support**: Strong documentation and community\n\n### Compared to other options:\n\n- **vs setState**: Provider better handles global state and business logic separation\n- **vs Riverpod**: Riverpod has more features but too complex for small projects like this\n- **vs Bloc/Cubit**: Bloc pattern suits complex apps but has more boilerplate code\n\n## Usage\n\n1. **Add new activity**: Press the + button at bottom right\n2. **Filter activities**: Press the 3-dot menu at top right and select \"Show After 18:00\"\n3. **Delete activity**: Press the trash icon in the activity list\n4. **View details**: Information is displayed in the activity card\n\n## Build for Production\n\n### Android APK\n\n```bash\nflutter build apk --release --obfuscate --split-debug-info=build/app/outputs/symbols\n```\n\n### Android App Bundle (for Google Play Store)\n\n```bash\nflutter build appbundle --release --obfuscate --split-debug-info=build/app/outputs/symbols\n```\n\n### iOS\n\n```bash\nflutter build ios --release\n```\n\n## License\n\nMIT License - See LICENSE file for details\n\n## Developer\n\nBuilt with Flutter and Created by Thanakorn Thajan❤️\n\n---\n\n**Note**: This app is developed for testing and learning purposes. For actual commercial use, additional features like data persistence, data backup, and improved UX/UI should be added.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheartthanakorn%2Fflutter-activity-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fheartthanakorn%2Fflutter-activity-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheartthanakorn%2Fflutter-activity-manager/lists"}