Smart Notes is a Flutter project developed for learning purposes. It allows users to create and view notes through a list-based interface. The app also features a Dark Mode for enhanced user experience.
The project follows the principles of Clean Architecture, separating it into three layers: domain, data, and presentation.
The domain layer contains the core business logic of the application. It includes the following components:
- Entities: Define the data models and business entities of the application.
- Use Cases: Implement the application's business rules and orchestrate data flow.
The data layer is responsible for handling data persistence and storage. It includes the following components:
- Repositories: Provide an abstraction for data access and define the contract for interacting with data sources.
- Data Sources: Implement the specific data storage mechanisms, such as local databases or APIs.
- Models: Define the data models used for serialization and deserialization.
The presentation layer manages the user interface and user interactions. It includes the following components:
- Pages: Display the UI to the user and handle user input.
- BLoCs: Manage the state and business logic for each screen using the BLoC pattern.
- Views: Reusable UI components used across screens.
The following packages were used in this project:
- mocktail: A package for mocking dependencies during unit tests.
- hive: A lightweight and fast key-value database for data persistence.
- bloc and flutter_bloc: Packages for state management using the BLoC pattern.
- bloc_test: A package for testing BLoCs and their interactions.
- get_it: A package for dependency injection and service location.
- Clone the repository:
git clone https://github.com/irbp/smart-notes.git
- Navigate to the project directory:
cd smart-notes
- Install the dependencies:
flutter pub get
- Run the app:
flutter run
To run the unit tests, use the following command:
flutter test
Contributions are welcome! If you find any bugs or have suggestions for improvements, please open an issue or submit a pull request.