A Flutter project to allow members have control over their own medical data. Once a user gets diagnosed the details of the diagnosis are recorded and the doctor confirms them before they are available for the user to view. The API to enable this app to function is found here
- Clone this project on a computer with flutter installed
- Build and you are good to go
lib/utils/api.dart
return _netUtil.post(addDiagnosisUrl, body: {
...
'doctorNationalId': '8888888' // After adding a doctor to your database, replace this with their national id.
...
});