Download this source code for
5 USD


Download this source code for
5 USD


Download this source code for
5 USD


Download this source code for
5 USD

Flutter ToDo application using Clean Code architecture Flutter ToDo application using Clean Code architecture Flutter ToDo application using Clean Code architecture Flutter ToDo application using Clean Code architecture
Flutter ToDo application using Clean Code architecture Flutter ToDo application using Clean Code architecture Flutter ToDo application using Clean Code architecture Flutter ToDo application using Clean Code architecture

doneit ��

doneit is a sample note app �� flutter application �� built to demonstrate use of clean architecture tools. dedicated to all flutter developers with ❤️.

about

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 ��.

directory structure

.
├── 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
|
├── data                       # data files of feature 1
│   ├── datasources            # datasources abstract files and implementations
│   │   └── feature            # feature 1 (for exp : todo feature)
│   │       └── sub-feat.      # sub feature
│   ├── models                 # models for data
│   │   └── feature            # feature 1 (for exp : todo feature)
│   │       └── sub-feat.      # sub feature
│   └── repositories           # repositories implementation classes
│       └── feature            # feature 1 (for exp : todo feature)
│           └── sub-feat.      # sub feature
├── domain                     # domain
│   ├── entities               # entities for feature 1
│   │   └── feature            # feature 1 (for exp : todo feature)
│   │       └── sub-feat.      # sub feature
│   ├── usecases               # usecases of feature 1
│   │   └── feature            # feature 1 (for exp : todo feature)
│   │       └── sub-feat.      # sub feature
│   └── repositories           # repositories abstract classes
│       └── feature            # feature 1 (for exp : todo feature)
│           └── sub-feat.      # sub feature
└── presentation               # presentation files
    ├── blocs                  # blocs
    │   └── feature            # feature 1 (for exp : todo feature)
    │       └── sub-feat.      # sub feature
    ├── pages                  # pages
    │   └── feature            # feature 1 (for exp : todo feature)
    │       └── sub-feat.      # sub feature
    └── widgets                # widgets
        └── feature            # feature 1 (for exp : todo feature)
            └── sub-feat.      # sub feature

architecture

this app uses [clean architecture by robert c martin]

Flutter ToDo application using Clean Code architecture

image source : resocoder

contribute

if you want to contribute to this library, you’re always welcome!
see contributing guidelines.

branches

.
├── 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.

acknowledgement

this repo is the update to the original repo by shubham chhimpa.github

this repo is updated with the latest flutter packages as of oct. 2021.


Download this source code for
5 USD


Download this source code for
5 USD


Download this source code for
5 USD


Download this source code for
5 USD

Top