Skip to content

votheanh39/flutter_code_foundation

 
 

Repository files navigation

Flutter Quick Care App

Quick Care front-end project this is an application for shift-booking building with Flutter Framework.

This project is equiped with:

  • Flavors
  • LightTheme and DarkTheme
  • Routers (go_routers)
  • Restful client (dio)
  • Local storage (Shared_preferences)
  • Dependencies control (get_it)
  • Loggers

Test method:

  • Unit test
  • Widget testing

Explaining the architecture

Each layer is separated and connect by interfaces Work flow

  1. Domain layer:
  • Domain layer contains enterprise bussiness logic which responsible for abstracting use cases and bussiness enities.
  • Presentation layer will comunicate domain layer use cases will be define first by bussiness rules
  • Domain layer calls repositories (Abstract) and access to data source
  1. Data layer:
  • Data layer responsibles for fetching data and process data (Local source and Remote source)
  • The repository folder of this layer is where the logic of fetching and process data reside. We will inject api client into those repository.
  1. Presentation layer:
  • Presentation layer responsibles for building the UI and handle UI logic
  • Most of the applications logic will be here along side with state management flow
  • There will be a state management sub-layer in this layer and the UI logic and calling Domain layer process will be there.

Bloc architecture

In this project we are using Bloc (Cubit) as the main state management method. With each feature we will attach with a Cubit and there will be a Cubit on top of the application.

About

A project for clean architecture

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 54.7%
  • C++ 21.0%
  • CMake 17.4%
  • Ruby 2.5%
  • HTML 1.8%
  • C 1.3%
  • Other 1.3%