dose-android
dose-android copied to clipboard
💊⏰ Dose is a medication reminder app for Android, built entirely using Kotlin and Jetpack Compose with MVVM + Clean Architecture
A screen that shows the upcoming medications that are yet to be taken.
A screen that shows all activities the user does: - Adds a new medication. - Takes a medication. - Deletes a medication. - Completes the course of the medication.
Add events for: - Success insertion of Medication to DB. - Error on trying to insert Medication to DB. - "Take now" CTA pressed. - Getting Medications from DB. -...
When user created the today medications but the app don't show the today medications List in Home Screen until the user click the today date chip. Until the user click...
### Discussed in https://github.com/waseefakhtar/dose-android/discussions/110 Originally posted by **yschimke** November 13, 2023 I added a prescription incorrectly. 40 doses without a mg. Is there functionality to manage the series? edit all...
This pull request contains the following changes: * Home Screen: Get medications for the selected date from DB instead of filtering: Issue #114 Please review the changes and let me...
- One composable component in a single file helps to easily visualize the changes via previews. - A problem or a bug in a parent component will not affect the...
https://github.com/waseefakhtar/dose-android/blob/10b015513497b069fdaf965cbb8d250e90d0c54d/app/src/main/java/com/waseefakhtar/doseapp/feature/addmedication/AddMedicationRoute.kt#L288 https://github.com/waseefakhtar/dose-android/blob/10b015513497b069fdaf965cbb8d250e90d0c54d/app/src/main/java/com/waseefakhtar/doseapp/feature/addmedication/AddMedicationRoute.kt#L268 Also for the `Recurrence` Dropdown, you're using its enum name instead of providing a translated text. I fixed this problem in one of my apps by introducing an...