A flutter application for monitroing health remotely.
- Fetch/Add/Edit/Delete medications.
- Search medications.
- Add prescriptions.
- View/delete prescriptions.
The project follows MVVM architecture with GetX as a StateManagement library. The UI is as reflective as possible with rich icons. Data is stored in local device with GetStorage. Medication & Documents are stored locally but network calls can be implemented(code already written and commented).
Find directory structure below:
-
presentation/ : Presents appplication data to users with views and widgets. Included Controllers and bindings for views.
-
domain/ : Defines usecases and repository contracts and stores entities with fields.
-
data/ : Implements repository contracts to communicate usecases with outside world. Manages local and remote data sources for bringing/posting data outside application scope.
-
di/ : Injects application dependencies for better dependency management and loose coupling.
- GetX package - https://pub.dev/packages/get