Tasque is a Flutter-based task management application designed for efficient task tracking, synchronization, and collaboration. It offers real-time updates with Firebase and follows a clean and modern design.
- Task Management: Create, update, delete, and view tasks.
- Task Prioritization: Assign priority levels (Low, Medium, High) to tasks.
- Task Synchronization: Sync tasks with Firebase Firestore.
- User Authentication: Google Sign-In and Firebase Authentication.
- Search & Filtering: Search tasks and filter by status, priority, or due date.
- Connectivity Monitoring: Detects online/offline status for a seamless experience.
- Theming & UI: Modern UI inspired by a dribbble design.
Tasque follows a feature-based architecture with a clean separation of concerns and uses a monorepo structure managed by Melos:
- app/tasque: Main Flutter application.
- core/: Common utilities like themes, database setup, and routing.
- features/: Specific modules such as authentication and task management.
- shared/: Shared widgets, extensions, and utilities.
- ObjectBox: Local database for efficient data storage.
- Firebase Firestore: Stores and synchronizes tasks in real time.
- Repository Pattern: Abstracts data sources for better scalability and testability.
task_repository.dart
- Provides an abstraction layer for accessing tasks.task_sync_repository.dart
- Provides an abstraction layer for task synchronization.
Tasque uses Bloc (Cubit) for state management, ensuring a reactive and scalable architecture.
- Dashboard Screen: Displays task summary, recent tasks, and create task form.
- Task List Screen: Shows a full list of tasks with search and filters.
- Task Details Screen: Provides details of a selected task with options to update or delete.
- Authentication Screen: Google Sign-In based authentication.
- GoRouter: Manages type-safe navigation between screens.
- Predefined Routes: Centralized control in
routes.dart
. - Deep Linking Capability: Enables navigation through URL schemes.
Package | Purpose |
---|---|
flutter_bloc | State management (Cubit) |
go_router | Navigation and routing |
cloud_firestore | Firebase Firestore integration |
firebase_auth | User authentication |
google_sign_in | Google authentication support |
objectbox | Local database |
freezed | Data models and serialization |
lottie | Animations for better UX |
form_builder_validators | Form validation utilities |
intl | Date formatting and localization |
connectivity_plus | Network connectivity monitoring |
- Flutter SDK (check the version in
.fvmrc
file)
- Clone the repository:
git clone https://github.com/albinpk/tasque.git cd tasque # project root
- Navigate to the Flutter app directory:
cd apps/tasque # Flutter app directory
- Install dependencies:
flutter pub get
- Generate necessary files:
dart run build_runner build --delete-conflicting-outputs
- Run the app:
flutter run
- Import/Export Feature: Enable data backup and restore.
Tasque - Making Task Management Simpler!