Todo App following clean architecture and best coding practices
This app follows the principles of Clean Architecture and is structured into the following layers:
config
: Contains configuration files and utilities for setting up the app and its dependencies.core
: Contains common functionality and abstractions used throughout the app.features
: Contains the main features of the app, each with its own set ofdata
,domain
, andpresentation
layers.
The data
layer contains models, data sources and repositories for retrieving and storing data related to the feature.
The domain
layer contains entities, use cases, and repository interfaces for defining the business logic of the feature.
The presentation
layer contains the UI layer and widgets for displaying and interacting with the feature, as well as any state management code with Riverpod.
For more information on how the app is structured and organized, see the architecture documentation.
Allows users to customize the app's settings and preferences.
For more information on how the preferences feature is structured and implemented, see the preferences documentation.
Allows users to create, manage, and complete tasks.
For more information on how the tasks feature is structured and implemented, see the tasks documentation.
To run the app locally, follow these steps:
- Clone this repository.
- Open the project in Android Studio or VS Code.
- Run the app using a simulator or connected device.
For more detailed instructions, see the Flutter documentation.
If you would like to contribute to this project, please follow these guidelines:
- Fork the repository and create a new branch.
- Make changes and test them thoroughly.
- Submit a pull request with a detailed description of your changes.
For more information on how to contribute, see the contributing guidelines.
The all features supports internationalization using the AppLocalizations
class provided by the Flutter Internationalization package. All the strings used are defined in the AppLocalizations
class and can be translated into different languages, just add another file in l10n
folder. For more you can refer to this flutter documentation.
This project is licensed under the MIT License. See the LICENSE file for details.