Jayjerome/Task_manager_application
태스크 매니저 앱은 사용자가 작업을 효율적으로 관리할 수 있도록 설계된 플러터 모바일 앱입니다. 이 앱은 상태 관리를 위해 Bloc 아키텍처를 사용하며 원활한 사용자 경험을 위해 오류 처리를 포함하고 있습니다.
- Stars
- 109
- Forks
- 48
- 최근 푸시(UTC)
- 2024. 9. 28.
- 프로젝트 상태
- 활성
사용 중인 의존성
의존성 목록 12 개
- flutter
{"sdk":"flutter"} - cupertino_icons
^1.0.2 - nb_utils
^6.0.4 - flutter_svg
^1.0.0 - table_calendar
^3.0.9 - intl
^0.18.1 - flutter_bloc
^8.1.3 - bloc_concurrency
^0.2.3 - shared_preferences
^2.2.2 - flutter_test개발 의존성
{"sdk":"flutter"} - mocktail개발 의존성
^1.0.1 - flutter_lints개발 의존성
^2.0.0
순위
원본 README
아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
README 펼치기 / 접기
Frame 3
Task Manager App
Overview
The Task Manager App is a Flutter mobile application designed to help users manage their tasks efficiently. The app utilizes the Bloc architecture for state management and incorporates error handling for a smooth user experience.
Features
- Add New Task: Easily add new tasks with titles, descriptions, start and end dates.
- Edit and Delete Tasks: Each tasks created can be edited and deleted.
- Sort and Search: Sort tasks by date or completion status, and search for specific tasks using keywords.
- Error Handling: The app includes error handling mechanisms to gracefully handle and display errors to users.
Getting Started
Prerequisites
- Ensure you have Flutter installed on your machine. If not, follow the Flutter installation guide.
- Clone the repository to your local machine.
Installation
-
Open a terminal and navigate to the project directory.
-
Run the following command to install dependencies:
flutter pub get
Run the app on an emulator or physical device using the following command:
flutter run
State Management
The app uses the Bloc architecture for efficient state management. Key Bloc classes include:
TasksBloc: Manages the overall state of tasks in the application. TasksEvent: Represents events triggering state changes. TasksState: Represents different states of the tasks, such as loading, success, or failure.
Error Handling
Error handling is implemented throughout the app to ensure a seamless user experience. The LoadTaskFailure, AddTaskFailure, and UpdateTaskFailure states provide details about errors encountered during data loading, task creation, and task updates.
Unit Test
Unit test has been integrated to test all functionalities from initial state to creating new task, updating task and deleting task