DoneIt is a sample note app 📝 Flutter application 📱 built to demonstrate use of Clean Architecture tools. Dedicated to all Flutter Developers with ❤️.
It simply loads Notes data from in memory database. Notes will be always loaded from in memor database.
- This makes it offline capable 😃.
- Clean and Simple Material UI.
- It supports dark theme too 🌗.
.
├── core # For all common and core files.
│ ├── error # contains all Exceptions and Failures classes
│ ├── presentation # common presentation files
| │ └── blocs # common blocs
| │ └── pages # core pages
| │ └── widgets # common widgets
│ └── route # Routes for navigation
│ └── theme # Theme data
│ └── usecases # common usecases
|
├── feature # all features
├── feature1 # Feature 1 (for exp : Todo Feature)
├── data # Data Files of Feature 1
├ └── datasources # DataSources Abstract Files and Implementations
├ └── models # Models for data
├ └── repositories # Repositories Implementation Classes
└── domain # Domain
├ └── entities # Entities For Feature 1
├ └── usecases # Usecases of Feature 1
├ └── repositories # Repositories Abstract Classes
├── presentation # Feature 1 presentation files
│ └── blocs # Feature 1 blocs
│ └── pages # Feature 1 pages
│ └── widgets # Feature 1 widgets
This app uses [Clean Architecture by Robert C Martin]
Image Source : ResoCoder
If you want to contribute to this library, you're always welcome! See Contributing Guidelines.
.
├── master # Contains the latest release
├── dev # Contains the latest development
├── feature1 # feature 1 created from dev
├── feature2 # feature 2 created from dev
├── feature3 # feature 3 created from dev
├── bugFix1 # bugfix 1 created from dev
├── bugFix2 # bugfix 1 created from dev
├── docChange1 # docChange 1 created from dev
├── docChange1 # docChange 2 created from dev
Note : Create pull request for feature,bugfix,docChange to only dev branch.
If you need any help, you can connect with me.