{"id":30952369,"url":"https://github.com/mugisha-pascal/flutter-offline-app","last_synced_at":"2025-09-11T07:42:15.872Z","repository":{"id":309088506,"uuid":"1024530908","full_name":"MUGISHA-Pascal/Flutter-Offline-App","owner":"MUGISHA-Pascal","description":"A modern Flutter task management app with offline-first capabilities, built using BLoC pattern and SQLite for seamless local data persistence","archived":false,"fork":false,"pushed_at":"2025-08-09T18:00:32.000Z","size":502,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-09T20:14:57.082Z","etag":null,"topics":["api-integration","cubit","sqlflite"],"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/MUGISHA-Pascal.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}},"created_at":"2025-07-22T21:09:12.000Z","updated_at":"2025-08-09T18:00:36.000Z","dependencies_parsed_at":"2025-08-09T20:15:00.764Z","dependency_job_id":"002c2d04-c8d4-484e-a7bf-a35c545b9285","html_url":"https://github.com/MUGISHA-Pascal/Flutter-Offline-App","commit_stats":null,"previous_names":["mugisha-pascal/flutter-offline-app"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/MUGISHA-Pascal/Flutter-Offline-App","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MUGISHA-Pascal%2FFlutter-Offline-App","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MUGISHA-Pascal%2FFlutter-Offline-App/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MUGISHA-Pascal%2FFlutter-Offline-App/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MUGISHA-Pascal%2FFlutter-Offline-App/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MUGISHA-Pascal","download_url":"https://codeload.github.com/MUGISHA-Pascal/Flutter-Offline-App/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MUGISHA-Pascal%2FFlutter-Offline-App/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274596179,"owners_count":25314023,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-11T02:00:13.660Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["api-integration","cubit","sqlflite"],"created_at":"2025-09-11T07:42:11.999Z","updated_at":"2025-09-11T07:42:15.861Z","avatar_url":"https://github.com/MUGISHA-Pascal.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Flutter Offline Task App\n\nA modern Flutter application for task management with offline-first capabilities. Built with BLoC pattern for state management and SQLite for local data persistence.\n\n## Features\n\n- **Offline-First Design**: Works seamlessly without internet connection\n- **Task Management**: Create, edit, delete, and organize tasks\n- **User Authentication**: Secure signup and login system\n- **Local Data Storage**: SQLite database for persistent data\n- **Modern UI**: Clean, responsive design with Material 3\n- **State Management**: BLoC pattern for predictable state management\n- **Connectivity Monitoring**: Real-time network status detection\n\n## Technology Stack\n\n- **Framework**: Flutter 3.8+\n- **State Management**: flutter_bloc\n- **Database**: SQLite (sqflite)\n- **HTTP Client**: http package\n- **Local Storage**: shared_preferences\n- **Connectivity**: connectivity_plus\n- **UI Components**: Material Design 3\n- **Custom Fonts**: Cera Pro\n\n## Getting Started\n\n### Prerequisites\n\n- Flutter SDK (3.8.1 or higher)\n- Dart SDK\n- Android Studio / VS Code\n- Android SDK (for Android development)\n- Xcode (for iOS development, macOS only)\n\n### Installation\n\n1. Clone the repository:\n   ```bash\n   git clone \u003crepository-url\u003e\n   cd flutter_offline_app\n   ```\n\n2. Install dependencies:\n   ```bash\n   flutter pub get\n   ```\n\n3. Run the app:\n   ```bash\n   flutter run\n   ```\n\n### Building for Production\n\n**Android:**\n```bash\nflutter build apk --release\n```\n\n**iOS:**\n```bash\nflutter build ios --release\n```\n\n**Web:**\n```bash\nflutter build web --release\n```\n\n## Project Structure\n\n```\nlib/\n├── core/           # Core utilities and constants\n├── features/       # Feature-based modules\n│   ├── auth/       # Authentication feature\n│   └── home/       # Task management feature\n├── models/         # Data models\n└── main.dart       # App entry point\n```\n\n## Architecture\n\nThis app follows a feature-based architecture with BLoC pattern:\n\n- **Features**: Each feature is self-contained with its own pages, cubits, and models\n- **BLoC Pattern**: Uses Cubit for state management within each feature\n- **Repository Pattern**: Data access layer for local and remote operations\n- **Offline-First**: Prioritizes local data with sync capabilities when online\n\n## Contributing\n\n1. Fork the repository\n2. Create a feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\n## Support\n\nFor support and questions, please open an issue in the repository.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmugisha-pascal%2Fflutter-offline-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmugisha-pascal%2Fflutter-offline-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmugisha-pascal%2Fflutter-offline-app/lists"}