Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/timusus/lift
Weight lifting Android app, written in Jetpack Compose
https://github.com/timusus/lift
android jetpack-compose
Last synced: 20 days ago
JSON representation
Weight lifting Android app, written in Jetpack Compose
- Host: GitHub
- URL: https://github.com/timusus/lift
- Owner: timusus
- Created: 2021-03-08T02:30:11.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-11-19T12:19:23.000Z (about 1 year ago)
- Last Synced: 2024-11-23T05:08:53.160Z (3 months ago)
- Topics: android, jetpack-compose
- Language: Kotlin
- Homepage:
- Size: 1.91 MB
- Stars: 2
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```mermaid
erDiagram
Exercise ||--o{ RoutineExercise : "Has"
Routine ||--o{ RoutineExercise : "Has"
RoutineExercise ||--o{ SessionExercise : "Is assigned in"
Session ||--o{ SessionExercise : "Is recorded in"
Session }o--|| Routine : "Follows"Exercise {
int id
string name
float one_rep_max
}Routine {
int id
int sort_order
string name
}RoutineExercise {
int id
int sort_order
int sets
int reps
float percent_one_rep_max
float weight
int routineId
int exerciseId
}Session {
int id
string startDate
string endDate
int routineId
int currentExerciseId
}SessionExercise {
int id
int sets
int reps
float weight
int sessionId
int routineExerciseId
int currentSet
string endDate
}```