├── .github
├── FUNDING.yml
├── ISSUE_TEMPLATE
│ ├── 1_bug.yml
│ ├── 2_feature_request.yml
│ └── config.yml
├── actions
│ └── flutter-common
│ │ └── action.yml
├── contributing.md
├── dependabot.yml
├── pull_request_template.md
├── release.yml
└── workflows
│ ├── build-android.yml
│ ├── build-apple.yml
│ ├── build-linux.yml
│ ├── build-windows.yml
│ ├── bump-version.yml
│ ├── ci.yml
│ ├── linter.yml.bak
│ └── make-release.yml
├── .gitignore
├── .metadata
├── .vscode
└── settings.json
├── AUTHORS.md
├── CHANGELOG.md
├── CHANGELOG.template.md
├── Gemfile
├── Gemfile.lock
├── LICENSE
├── README.md
├── analysis_options.yaml
├── android
├── .gitignore
├── Gemfile
├── app
│ ├── build.gradle
│ └── src
│ │ ├── debug
│ │ └── AndroidManifest.xml
│ │ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── kotlin
│ │ │ └── de
│ │ │ │ └── wger
│ │ │ │ └── flutter
│ │ │ │ └── MainActivity.kt
│ │ └── res
│ │ │ ├── drawable
│ │ │ ├── ic_launcher_foreground.xml
│ │ │ └── launch_background.xml
│ │ │ ├── mipmap-anydpi-v26
│ │ │ └── ic_launcher.xml
│ │ │ ├── mipmap-hdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── mipmap-mdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── mipmap-xhdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── mipmap-xxhdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── mipmap-xxxhdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── values
│ │ │ ├── colors.xml
│ │ │ └── styles.xml
│ │ │ └── xml
│ │ │ └── network_security_config.xml
│ │ └── profile
│ │ └── AndroidManifest.xml
├── build.gradle
├── gradle.properties
├── gradle
│ └── wrapper
│ │ └── gradle-wrapper.properties
└── settings.gradle
├── assets
├── animations
│ └── wger_logo.riv
├── fonts
│ ├── OFL - RobotoCondensed.txt
│ └── RobotoCondensed-VariableFont_wght.ttf
├── icons
│ ├── ingredient-add.svg
│ ├── ingredient-check.svg
│ ├── ingredient-diary.svg
│ ├── ingredient-edit.svg
│ ├── meal-add.svg
│ ├── meal-check.svg
│ ├── meal-diary.svg
│ └── meal-edit.svg
└── images
│ ├── logo-white.png
│ ├── logo.png
│ ├── muscles
│ ├── back.svg
│ ├── front.svg
│ ├── main
│ │ ├── muscle-1.svg
│ │ ├── muscle-10.svg
│ │ ├── muscle-11.svg
│ │ ├── muscle-12.svg
│ │ ├── muscle-13.svg
│ │ ├── muscle-14.svg
│ │ ├── muscle-15.svg
│ │ ├── muscle-16.svg
│ │ ├── muscle-2.svg
│ │ ├── muscle-3.svg
│ │ ├── muscle-4.svg
│ │ ├── muscle-5.svg
│ │ ├── muscle-6.svg
│ │ ├── muscle-7.svg
│ │ ├── muscle-8.svg
│ │ └── muscle-9.svg
│ └── secondary
│ │ ├── muscle-1.svg
│ │ ├── muscle-10.svg
│ │ ├── muscle-11.svg
│ │ ├── muscle-12.svg
│ │ ├── muscle-13.svg
│ │ ├── muscle-14.svg
│ │ ├── muscle-15.svg
│ │ ├── muscle-16.svg
│ │ ├── muscle-2.svg
│ │ ├── muscle-3.svg
│ │ ├── muscle-4.svg
│ │ ├── muscle-5.svg
│ │ ├── muscle-6.svg
│ │ ├── muscle-7.svg
│ │ ├── muscle-8.svg
│ │ └── muscle-9.svg
│ ├── placeholder.png
│ └── placeholder.svg
├── assets_dev
└── logo.png
├── dart_test.yaml
├── devtools_options.yaml
├── fastlane
├── Appfile
├── Fastfile
├── Pluginfile
├── README.md
├── metadata
│ ├── android
│ │ ├── README.md
│ │ ├── ar
│ │ │ ├── full_description.txt
│ │ │ └── short_description.txt
│ │ ├── ca
│ │ │ ├── full_description.txt
│ │ │ ├── images
│ │ │ │ ├── phoneScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ ├── sevenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ └── tenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ ├── short_description.txt
│ │ │ └── title.txt
│ │ ├── cs-CZ
│ │ │ ├── full_description.txt
│ │ │ ├── images
│ │ │ │ ├── phoneScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ ├── sevenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ └── tenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ ├── short_description.txt
│ │ │ └── title.txt
│ │ ├── de-DE
│ │ │ ├── full_description.txt
│ │ │ ├── images
│ │ │ │ ├── phoneScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ ├── sevenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ └── tenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ ├── short_description.txt
│ │ │ └── title.txt
│ │ ├── el-GR
│ │ │ ├── full_description.txt
│ │ │ ├── images
│ │ │ │ ├── phoneScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ ├── sevenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ └── tenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ ├── short_description.txt
│ │ │ └── title.txt
│ │ ├── en-US
│ │ │ ├── full_description.txt
│ │ │ ├── images
│ │ │ │ ├── icon.png
│ │ │ │ ├── phoneScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ ├── sevenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ └── tenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ ├── short_description.txt
│ │ │ └── title.txt
│ │ ├── es-ES
│ │ │ ├── full_description.txt
│ │ │ ├── images
│ │ │ │ ├── phoneScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ ├── sevenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ └── tenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ ├── short_description.txt
│ │ │ └── title.txt
│ │ ├── fr-FR
│ │ │ ├── full_description.txt
│ │ │ ├── images
│ │ │ │ ├── phoneScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ ├── sevenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ └── tenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ ├── short_description.txt
│ │ │ └── title.txt
│ │ ├── hi-IN
│ │ │ ├── full_description.txt
│ │ │ ├── images
│ │ │ │ ├── phoneScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ ├── sevenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ └── tenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ ├── short_description.txt
│ │ │ └── title.txt
│ │ ├── hr
│ │ │ ├── full_description.txt
│ │ │ ├── images
│ │ │ │ ├── phoneScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ ├── sevenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ └── tenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ ├── short_description.txt
│ │ │ └── title.txt
│ │ ├── it-IT
│ │ │ ├── full_description.txt
│ │ │ ├── images
│ │ │ │ ├── phoneScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ ├── sevenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ └── tenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ ├── short_description.txt
│ │ │ └── title.txt
│ │ ├── nb-NO
│ │ │ ├── full_description.txt
│ │ │ ├── images
│ │ │ │ ├── phoneScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ ├── sevenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ └── tenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ ├── short_description.txt
│ │ │ └── title.txt
│ │ ├── pl-PL
│ │ │ ├── full_description.txt
│ │ │ ├── images
│ │ │ │ ├── phoneScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ ├── sevenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ └── tenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ ├── short_description.txt
│ │ │ └── title.txt
│ │ ├── pt-BR
│ │ │ ├── full_description.txt
│ │ │ ├── images
│ │ │ │ ├── phoneScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ ├── sevenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ └── tenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ ├── short_description.txt
│ │ │ └── title.txt
│ │ ├── pt-PT
│ │ │ ├── full_description.txt
│ │ │ ├── images
│ │ │ │ ├── phoneScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ ├── sevenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ └── tenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ ├── short_description.txt
│ │ │ └── title.txt
│ │ ├── ru-RU
│ │ │ ├── full_description.txt
│ │ │ ├── images
│ │ │ │ ├── phoneScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ ├── sevenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ └── tenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ ├── short_description.txt
│ │ │ └── title.txt
│ │ ├── sr
│ │ │ ├── full_description.txt
│ │ │ ├── images
│ │ │ │ ├── phoneScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ ├── sevenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ └── tenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ ├── short_description.txt
│ │ │ └── title.txt
│ │ ├── ta-IN
│ │ │ ├── full_description.txt
│ │ │ ├── short_description.txt
│ │ │ └── title.txt
│ │ ├── tr-TR
│ │ │ ├── full_description.txt
│ │ │ ├── images
│ │ │ │ ├── phoneScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ ├── sevenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ └── tenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ ├── short_description.txt
│ │ │ └── title.txt
│ │ ├── uk
│ │ │ ├── full_description.txt
│ │ │ ├── images
│ │ │ │ ├── phoneScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ ├── sevenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ └── tenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ ├── short_description.txt
│ │ │ └── title.txt
│ │ ├── zh-CN
│ │ │ ├── full_description.txt
│ │ │ ├── images
│ │ │ │ ├── phoneScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ ├── sevenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ │ └── tenInchScreenshots
│ │ │ │ │ ├── 01 - dashboard.png
│ │ │ │ │ ├── 02 - workout detail.png
│ │ │ │ │ ├── 03 - gym mode.png
│ │ │ │ │ ├── 04 - measurements.png
│ │ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ │ └── 06 - weight.png
│ │ │ ├── short_description.txt
│ │ │ └── title.txt
│ │ └── zh-TW
│ │ │ ├── full_description.txt
│ │ │ ├── images
│ │ │ ├── phoneScreenshots
│ │ │ │ ├── 01 - dashboard.png
│ │ │ │ ├── 02 - workout detail.png
│ │ │ │ ├── 03 - gym mode.png
│ │ │ │ ├── 04 - measurements.png
│ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ └── 06 - weight.png
│ │ │ ├── sevenInchScreenshots
│ │ │ │ ├── 01 - dashboard.png
│ │ │ │ ├── 02 - workout detail.png
│ │ │ │ ├── 03 - gym mode.png
│ │ │ │ ├── 04 - measurements.png
│ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ └── 06 - weight.png
│ │ │ └── tenInchScreenshots
│ │ │ │ ├── 01 - dashboard.png
│ │ │ │ ├── 02 - workout detail.png
│ │ │ │ ├── 03 - gym mode.png
│ │ │ │ ├── 04 - measurements.png
│ │ │ │ ├── 05 - nutritional plan.png
│ │ │ │ └── 06 - weight.png
│ │ │ ├── short_description.txt
│ │ │ └── title.txt
│ └── envfiles
│ │ ├── decrypt_secrets.sh
│ │ ├── key.properties.gpg
│ │ ├── keys.jks.gpg
│ │ └── playstore.json.gpg
└── report.xml
├── integration_test
├── 1_dashboard.dart
├── 2_workout.dart
├── 3_gym_mode.dart
├── 4_measurements.dart
├── 5_nutritional_plan.dart
├── 6_weight.dart
├── README.md
└── make_screenshots_test.dart
├── ios
├── .gitignore
├── Flutter
│ ├── AppFrameworkInfo.plist
│ ├── Debug.xcconfig
│ └── Release.xcconfig
├── Gemfile
├── Gemfile.lock
├── Podfile
├── Podfile.lock
├── Runner.xcodeproj
│ ├── project.pbxproj
│ ├── project.xcworkspace
│ │ ├── contents.xcworkspacedata
│ │ └── xcshareddata
│ │ │ ├── IDEWorkspaceChecks.plist
│ │ │ └── WorkspaceSettings.xcsettings
│ └── xcshareddata
│ │ └── xcschemes
│ │ └── Runner.xcscheme
├── Runner.xcworkspace
│ ├── contents.xcworkspacedata
│ └── xcshareddata
│ │ ├── IDEWorkspaceChecks.plist
│ │ └── WorkspaceSettings.xcsettings
├── Runner
│ ├── AppDelegate.swift
│ ├── Assets.xcassets
│ │ ├── AppIcon.appiconset
│ │ │ ├── 100.png
│ │ │ ├── 1024.png
│ │ │ ├── 114.png
│ │ │ ├── 120.png
│ │ │ ├── 144.png
│ │ │ ├── 152.png
│ │ │ ├── 167.png
│ │ │ ├── 180.png
│ │ │ ├── 20.png
│ │ │ ├── 29.png
│ │ │ ├── 40.png
│ │ │ ├── 50.png
│ │ │ ├── 57.png
│ │ │ ├── 58.png
│ │ │ ├── 60.png
│ │ │ ├── 72.png
│ │ │ ├── 76.png
│ │ │ ├── 80.png
│ │ │ ├── 87.png
│ │ │ └── Contents.json
│ │ ├── Contents.json
│ │ └── LaunchImage.imageset
│ │ │ ├── Contents.json
│ │ │ ├── LaunchImage.png
│ │ │ ├── LaunchImage@2x.png
│ │ │ ├── LaunchImage@3x.png
│ │ │ └── README.md
│ ├── Base.lproj
│ │ ├── LaunchScreen.storyboard
│ │ └── Main.storyboard
│ ├── Info.plist
│ ├── Runner-Bridging-Header.h
│ └── Runner.entitlements
├── build
│ └── .last_build_id
└── fastlane
│ ├── Appfile
│ ├── Deliverfile
│ ├── Fastfile
│ ├── README.md
│ ├── metadata
│ ├── copyright.txt
│ ├── de-DE
│ │ ├── apple_tv_privacy_policy.txt
│ │ ├── description.txt
│ │ ├── keywords.txt
│ │ ├── marketing_url.txt
│ │ ├── name.txt
│ │ ├── privacy_url.txt
│ │ ├── promotional_text.txt
│ │ ├── release_notes.txt
│ │ ├── subtitle.txt
│ │ └── support_url.txt
│ ├── primary_category.txt
│ ├── primary_first_sub_category.txt
│ ├── primary_second_sub_category.txt
│ ├── review_information
│ │ ├── demo_password.txt
│ │ ├── demo_user.txt
│ │ ├── email_address.txt
│ │ ├── first_name.txt
│ │ ├── last_name.txt
│ │ ├── notes.txt
│ │ └── phone_number.txt
│ ├── secondary_category.txt
│ ├── secondary_first_sub_category.txt
│ └── secondary_second_sub_category.txt
│ └── screenshots
│ ├── README.txt
│ └── de-DE
│ ├── 0_APP_IPHONE_55_0.png
│ ├── 0_APP_IPHONE_67_0.jpg
│ ├── 1_APP_IPHONE_55_1.png
│ ├── 1_APP_IPHONE_67_1.jpg
│ ├── 2_APP_IPHONE_55_2.png
│ ├── 2_APP_IPHONE_67_2.jpg
│ ├── 3_APP_IPHONE_55_3.png
│ ├── 3_APP_IPHONE_67_3.jpg
│ ├── 4_APP_IPHONE_55_4.png
│ └── 4_APP_IPHONE_67_4.jpg
├── l10n.yaml
├── lib
├── core
│ └── locator.dart
├── database
│ ├── exercises
│ │ ├── exercise_database.dart
│ │ ├── exercise_database.g.dart
│ │ └── type_converters.dart
│ └── ingredients
│ │ ├── ingredients_database.dart
│ │ └── ingredients_database.g.dart
├── exceptions
│ ├── http_exception.dart
│ ├── no_result_exception.dart
│ └── no_such_entry_exception.dart
├── helpers
│ ├── charts.dart
│ ├── colors.dart
│ ├── consts.dart
│ ├── errors.dart
│ ├── exercises
│ │ └── forms.dart
│ ├── gym_mode.dart
│ ├── i18n.dart
│ ├── json.dart
│ ├── misc.dart
│ ├── platform.dart
│ └── shared_preferences.dart
├── l10n
│ ├── README.md
│ ├── app_am.arb
│ ├── app_ar.arb
│ ├── app_ca.arb
│ ├── app_cs.arb
│ ├── app_de.arb
│ ├── app_el.arb
│ ├── app_en.arb
│ ├── app_es.arb
│ ├── app_fr.arb
│ ├── app_he.arb
│ ├── app_hi.arb
│ ├── app_hr.arb
│ ├── app_hu.arb
│ ├── app_id.arb
│ ├── app_it.arb
│ ├── app_ja.arb
│ ├── app_ko.arb
│ ├── app_nb.arb
│ ├── app_nl.arb
│ ├── app_pl.arb
│ ├── app_pt.arb
│ ├── app_pt_BR.arb
│ ├── app_ro.arb
│ ├── app_ru.arb
│ ├── app_ta.arb
│ ├── app_tr.arb
│ ├── app_uk.arb
│ ├── app_zh.arb
│ ├── app_zh_Hant.arb
│ └── remove_keys.dart
├── main.dart
├── models
│ ├── README.txt
│ ├── body_weight
│ │ ├── weight_entry.dart
│ │ └── weight_entry.g.dart
│ ├── exercises
│ │ ├── alias.dart
│ │ ├── alias.g.dart
│ │ ├── category.dart
│ │ ├── category.g.dart
│ │ ├── comment.dart
│ │ ├── comment.g.dart
│ │ ├── equipment.dart
│ │ ├── equipment.g.dart
│ │ ├── exercise.dart
│ │ ├── exercise.g.dart
│ │ ├── exercise_api.dart
│ │ ├── exercise_api.freezed.dart
│ │ ├── exercise_api.g.dart
│ │ ├── image.dart
│ │ ├── image.g.dart
│ │ ├── ingredient_api.dart
│ │ ├── ingredient_api.freezed.dart
│ │ ├── ingredient_api.g.dart
│ │ ├── language.dart
│ │ ├── language.g.dart
│ │ ├── muscle.dart
│ │ ├── muscle.g.dart
│ │ ├── translation.dart
│ │ ├── translation.g.dart
│ │ ├── variation.dart
│ │ ├── variation.g.dart
│ │ ├── video.dart
│ │ └── video.g.dart
│ ├── gallery
│ │ ├── image.dart
│ │ └── image.g.dart
│ ├── measurements
│ │ ├── measurement_category.dart
│ │ ├── measurement_category.g.dart
│ │ ├── measurement_entry.dart
│ │ └── measurement_entry.g.dart
│ ├── nutrition
│ │ ├── ingredient.dart
│ │ ├── ingredient.g.dart
│ │ ├── ingredient_image.dart
│ │ ├── ingredient_image.g.dart
│ │ ├── ingredient_weight_unit.dart
│ │ ├── ingredient_weight_unit.g.dart
│ │ ├── log.dart
│ │ ├── log.g.dart
│ │ ├── meal.dart
│ │ ├── meal.g.dart
│ │ ├── meal_item.dart
│ │ ├── meal_item.g.dart
│ │ ├── nutritional_goals.dart
│ │ ├── nutritional_plan.dart
│ │ ├── nutritional_plan.g.dart
│ │ ├── nutritional_values.dart
│ │ ├── weight_unit.dart
│ │ └── weight_unit.g.dart
│ ├── user
│ │ ├── profile.dart
│ │ └── profile.g.dart
│ └── workouts
│ │ ├── base_config.dart
│ │ ├── base_config.g.dart
│ │ ├── day.dart
│ │ ├── day.g.dart
│ │ ├── day_data.dart
│ │ ├── day_data.g.dart
│ │ ├── log.dart
│ │ ├── log.g.dart
│ │ ├── repetition_unit.dart
│ │ ├── repetition_unit.g.dart
│ │ ├── routine.dart
│ │ ├── routine.g.dart
│ │ ├── session.dart
│ │ ├── session.g.dart
│ │ ├── session_api.dart
│ │ ├── session_api.g.dart
│ │ ├── set_config_data.dart
│ │ ├── set_config_data.g.dart
│ │ ├── slot.dart
│ │ ├── slot.g.dart
│ │ ├── slot_data.dart
│ │ ├── slot_data.g.dart
│ │ ├── slot_entry.dart
│ │ ├── slot_entry.g.dart
│ │ ├── weight_unit.dart
│ │ └── weight_unit.g.dart
├── providers
│ ├── add_exercise.dart
│ ├── auth.dart
│ ├── base_provider.dart
│ ├── body_weight.dart
│ ├── exercises.dart
│ ├── gallery.dart
│ ├── gym_state.dart
│ ├── helpers.dart
│ ├── measurement.dart
│ ├── nutrition.dart
│ ├── plate_weights.dart
│ ├── routines.dart
│ └── user.dart
├── screens
│ ├── add_exercise_screen.dart
│ ├── auth_screen.dart
│ ├── configure_plates_screen.dart
│ ├── dashboard.dart
│ ├── exercise_screen.dart
│ ├── exercises_screen.dart
│ ├── form_screen.dart
│ ├── gallery_screen.dart
│ ├── gym_mode.dart
│ ├── home_tabs_screen.dart
│ ├── log_meal_screen.dart
│ ├── log_meals_screen.dart
│ ├── measurement_categories_screen.dart
│ ├── measurement_entries_screen.dart
│ ├── nutritional_diary_screen.dart
│ ├── nutritional_plan_screen.dart
│ ├── nutritional_plans_screen.dart
│ ├── routine_edit_screen.dart
│ ├── routine_list_screen.dart
│ ├── routine_logs_screen.dart
│ ├── routine_screen.dart
│ ├── splash_screen.dart
│ ├── update_app_screen.dart
│ └── weight_screen.dart
├── theme
│ └── theme.dart
└── widgets
│ ├── add_exercise
│ ├── add_exercise_dropdown_button.dart
│ ├── add_exercise_multiselect_button.dart
│ ├── add_exercise_text_area.dart
│ ├── mixins
│ │ └── image_picker_mixin.dart
│ ├── preview_images.dart
│ └── steps
│ │ ├── step1basics.dart
│ │ ├── step2variations.dart
│ │ ├── step3description.dart
│ │ ├── step4translations.dart
│ │ └── step5images.dart
│ ├── auth
│ ├── api_token_field.dart
│ ├── email_field.dart
│ ├── password_field.dart
│ ├── server_field.dart
│ └── username_field.dart
│ ├── core
│ ├── about.dart
│ ├── app_bar.dart
│ ├── core.dart
│ ├── progress_indicator.dart
│ ├── settings.dart
│ └── text_prompt.dart
│ ├── dashboard
│ ├── calendar.dart
│ └── widgets
│ │ ├── measurements.dart
│ │ ├── nothing_found.dart
│ │ ├── nutrition.dart
│ │ ├── routines.dart
│ │ └── weight.dart
│ ├── exercises
│ ├── autocompleter.dart
│ ├── exercises.dart
│ ├── filter_modal.dart
│ ├── filter_row.dart
│ ├── forms.dart
│ ├── images.dart
│ ├── list_tile.dart
│ └── videos.dart
│ ├── gallery
│ ├── forms.dart
│ └── overview.dart
│ ├── measurements
│ ├── categories.dart
│ ├── categories_card.dart
│ ├── charts.dart
│ ├── entries.dart
│ ├── forms.dart
│ └── helpers.dart
│ ├── nutrition
│ ├── charts.dart
│ ├── forms.dart
│ ├── helpers.dart
│ ├── ingredient_dialogs.dart
│ ├── macro_nutrients_table.dart
│ ├── meal.dart
│ ├── nutrition_tile.dart
│ ├── nutrition_tiles.dart
│ ├── nutritional_diary_detail.dart
│ ├── nutritional_diary_table.dart
│ ├── nutritional_plan_detail.dart
│ ├── nutritional_plans_list.dart
│ └── widgets.dart
│ ├── routines
│ ├── app_bar.dart
│ ├── charts.dart
│ ├── day.dart
│ ├── forms
│ │ ├── day.dart
│ │ ├── reps.dart
│ │ ├── reps_unit.dart
│ │ ├── rir.dart
│ │ ├── routine.dart
│ │ ├── session.dart
│ │ ├── slot.dart
│ │ ├── slot_entry.dart
│ │ └── weight_unit.dart
│ ├── gym_mode
│ │ ├── exercise_overview.dart
│ │ ├── gym_mode.dart
│ │ ├── log_page.dart
│ │ ├── navigation.dart
│ │ ├── session_page.dart
│ │ ├── start_page.dart
│ │ └── timer.dart
│ ├── log.dart
│ ├── plate_calculator.dart
│ ├── routine_detail.dart
│ ├── routine_edit.dart
│ ├── routines_list.dart
│ ├── slot.dart
│ └── workout_logs.dart
│ ├── user
│ └── forms.dart
│ └── weight
│ ├── forms.dart
│ └── weight_overview.dart
├── linux
├── .gitignore
├── CMakeLists.txt
├── flutter
│ ├── CMakeLists.txt
│ ├── generated_plugin_registrant.cc
│ ├── generated_plugin_registrant.h
│ └── generated_plugins.cmake
├── main.cc
├── my_application.cc
└── my_application.h
├── macos
├── .gitignore
├── Flutter
│ ├── Flutter-Debug.xcconfig
│ ├── Flutter-Release.xcconfig
│ └── GeneratedPluginRegistrant.swift
├── Podfile
├── Podfile.lock
├── Runner.xcodeproj
│ ├── project.pbxproj
│ ├── project.xcworkspace
│ │ └── xcshareddata
│ │ │ └── IDEWorkspaceChecks.plist
│ └── xcshareddata
│ │ └── xcschemes
│ │ └── Runner.xcscheme
├── Runner.xcworkspace
│ ├── contents.xcworkspacedata
│ └── xcshareddata
│ │ └── IDEWorkspaceChecks.plist
└── Runner
│ ├── AppDelegate.swift
│ ├── Assets.xcassets
│ └── AppIcon.appiconset
│ │ ├── Contents.json
│ │ ├── app_icon_1024.png
│ │ ├── app_icon_128.png
│ │ ├── app_icon_16.png
│ │ ├── app_icon_256.png
│ │ ├── app_icon_32.png
│ │ ├── app_icon_512.png
│ │ └── app_icon_64.png
│ ├── Base.lproj
│ └── MainMenu.xib
│ ├── Configs
│ ├── AppInfo.xcconfig
│ ├── Debug.xcconfig
│ ├── Release.xcconfig
│ └── Warnings.xcconfig
│ ├── DebugProfile.entitlements
│ ├── Info.plist
│ ├── MainFlutterWindow.swift
│ └── Release.entitlements
├── pubspec.lock
├── pubspec.yaml
├── schema.json
├── test
├── auth
│ ├── auth_provider_test.dart
│ ├── auth_screen_test.dart
│ └── auth_screen_test.mocks.dart
├── core
│ ├── settings_test.dart
│ └── settings_test.mocks.dart
├── exercises
│ ├── contribute_exercise_test.dart
│ ├── contribute_exercise_test.mocks.dart
│ ├── exercise_provider_db_test.dart
│ ├── exercise_provider_load_test.dart
│ ├── exercise_provider_test.dart
│ ├── exercises_detail_widget_test.dart
│ ├── exercises_detail_widget_test.mocks.dart
│ └── model_exercise_test.dart
├── fixtures
│ ├── exercises
│ │ ├── category_entries.json
│ │ ├── equipment_entries.json
│ │ ├── exercise_search_entries.json
│ │ ├── exerciseinfo_response.json
│ │ ├── language_entries.json
│ │ └── muscles_entries.json
│ ├── fixture_reader.dart
│ ├── measurement
│ │ ├── measurement_categories.json
│ │ ├── measurement_category.json
│ │ ├── measurement_category_edited.json
│ │ ├── measurement_category_edited_to_json.json
│ │ ├── measurement_category_entries.json
│ │ ├── measurement_category_without_id_to_json.json
│ │ ├── measurement_entry.json
│ │ ├── measurement_entry_edited.json
│ │ ├── measurement_entry_without_id.json
│ │ └── measurement_entry_wrong_category.json
│ ├── nutrition
│ │ ├── ingredient_suggestions.json
│ │ ├── ingredientinfo_10065.json
│ │ ├── ingredientinfo_58300.json
│ │ ├── ingredientinfo_59887.json
│ │ ├── ingredientinfo_right_code.json
│ │ ├── ingredientinfo_wrong_code.json
│ │ ├── nutrition_diary_response.json
│ │ ├── nutritional_plan_detail_response.json
│ │ └── nutritional_plan_info_detail_response.json
│ ├── pagination
│ │ ├── pagination1.json
│ │ ├── pagination2.json
│ │ └── pagination3.json
│ ├── routines
│ │ ├── repetition_units.json
│ │ ├── routine_date_sequence_display.json
│ │ ├── routine_date_sequence_gym.json
│ │ ├── routine_logs.json
│ │ ├── routine_structure.json
│ │ ├── slot_entry.json
│ │ └── weight_units.json
│ ├── user
│ │ └── userprofile_response.json
│ └── weight
│ │ └── weight_entries.json
├── gallery
│ ├── gallery_form_test.dart
│ ├── gallery_form_test.mocks.dart
│ ├── gallery_provider_test.dart
│ ├── gallery_screen_test.dart
│ └── gallery_screen_test.mocks.dart
├── helpers
│ ├── colors_test.dart
│ └── json_test.dart
├── measurements
│ ├── measurement_categories_screen_test.dart
│ ├── measurement_categories_screen_test.mocks.dart
│ ├── measurement_category_test.dart
│ ├── measurement_entries_screen_test.dart
│ ├── measurement_entry_test.dart
│ ├── measurement_provider_test.dart
│ └── measurement_provider_test.mocks.dart
├── nutrition
│ ├── goldens
│ │ ├── nutritional_plan_1_default_view.png
│ │ ├── nutritional_plan_2_one_meal_with_ingredients.png
│ │ └── nutritional_plan_3_both_meals_with_ingredients.png
│ ├── nutrition_provider_test.dart
│ ├── nutritional_diary_test.dart
│ ├── nutritional_meal_form_test.dart
│ ├── nutritional_meal_form_test.mocks.dart
│ ├── nutritional_meal_item_form_test.dart
│ ├── nutritional_plan_form_test.dart
│ ├── nutritional_plan_form_test.mocks.dart
│ ├── nutritional_plan_model_test.dart
│ ├── nutritional_plan_screen_test.dart
│ ├── nutritional_plan_screen_test.mocks.dart
│ ├── nutritional_plans_screen_test.dart
│ ├── nutritional_plans_screen_test.mocks.dart
│ └── nutritional_values_class_test.dart
├── other
│ ├── base_provider_test.dart
│ ├── base_provider_test.mocks.dart
│ └── extensions_test.dart
├── providers
│ ├── plate_calculator_test.dart
│ └── plate_calculator_test.mocks.dart
├── routine
│ ├── day_form_test.dart
│ ├── day_form_test.mocks.dart
│ ├── forms
│ │ ├── session_form_test.dart
│ │ └── session_form_test.mocks.dart
│ ├── goldens
│ │ ├── routine_logs_screen_detail.png
│ │ └── routine_screen_detail.png
│ ├── gym_mode_screen_test.dart
│ ├── gym_mode_screen_test.mocks.dart
│ ├── gym_mode_session_screen_test.dart
│ ├── gym_mode_session_screen_test.mocks.dart
│ ├── plate_calculator_test.dart
│ ├── repetition_unit_form_widget_test.dart
│ ├── repetition_unit_form_widget_test.mocks.dart
│ ├── routine_edit_screen_test.dart
│ ├── routine_edit_screen_test.mocks.dart
│ ├── routine_edit_test.dart
│ ├── routine_edit_test.mocks.dart
│ ├── routine_form_test.dart
│ ├── routine_form_test.mocks.dart
│ ├── routine_logs_screen_test.dart
│ ├── routine_logs_screen_test.mocks.dart
│ ├── routine_model_test.dart
│ ├── routine_screen_test.dart
│ ├── routine_screen_test.mocks.dart
│ ├── routines_provider_test.dart
│ ├── routines_provider_test.mocks.dart
│ ├── routines_screen_test.dart
│ ├── routines_screen_test.mocks.dart
│ ├── slot_entry_form_test.dart
│ ├── slot_entry_form_test.mocks.dart
│ ├── slot_entry_model_test.dart
│ ├── weight_unit_form_widget_test.dart
│ ├── weight_unit_form_widget_test.mocks.dart
│ └── workout_log_model_test.dart
├── user
│ ├── provider_test.dart
│ └── provider_test.mocks.dart
├── utils.dart
├── utils
│ └── errors_test.dart
├── weight
│ ├── weight_form_test.dart
│ ├── weight_model_test.dart
│ ├── weight_provider_test.dart
│ ├── weight_provider_test.mocks.dart
│ ├── weight_screen_test.dart
│ └── weight_screen_test.mocks.dart
└── widgets
│ └── routines
│ └── plate_calculator_test.dart
├── test_data
├── body_weight.dart
├── exercises.dart
├── gallery.dart
├── measurements.dart
├── nutritional_plans.dart
├── profile.dart
├── routines.dart
└── screenshots_exercises.dart
├── test_driver
└── screenshot_driver.dart
├── web
├── favicon.png
├── icons
│ ├── Icon-192.png
│ └── Icon-512.png
├── index.html
└── manifest.json
└── windows
├── .gitignore
├── CMakeLists.txt
├── flutter
├── CMakeLists.txt
├── generated_plugin_registrant.cc
├── generated_plugin_registrant.h
└── generated_plugins.cmake
└── runner
├── CMakeLists.txt
├── Runner.rc
├── flutter_window.cpp
├── flutter_window.h
├── main.cpp
├── resource.h
├── resources
└── app_icon.ico
├── runner.exe.manifest
├── utils.cpp
├── utils.h
├── win32_window.cpp
└── win32_window.h
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 |
3 | github: wger-project
4 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/config.yml:
--------------------------------------------------------------------------------
1 | blank_issues_enabled: true
2 | contact_links:
3 | - name: Get in touch with the community
4 | url: https://discord.gg/rPWFv6W
5 | about: Hop on the Discord server if you want to discuss new features or problem with us
6 |
--------------------------------------------------------------------------------
/.github/actions/flutter-common/action.yml:
--------------------------------------------------------------------------------
1 | name: 'Flutter common setup'
2 | description: 'Common steps needed to setup the application'
3 |
4 | runs:
5 | using: "composite"
6 | steps:
7 |
8 | - name: Setup Flutter
9 | uses: subosito/flutter-action@v2
10 | with:
11 | channel: stable
12 | flutter-version: 3.32.0
13 | cache: true
14 |
15 | - name: Install Flutter dependencies
16 | run: flutter pub get
17 | shell: bash
18 |
19 | - name: Install Flutter dependencies
20 | run: |
21 | dart --version
22 | flutter --version
23 | shell: bash
--------------------------------------------------------------------------------
/.github/dependabot.yml:
--------------------------------------------------------------------------------
1 | # To get started with Dependabot version updates, you'll need to specify which
2 | # package ecosystems to update and where the package manifests are located.
3 | # Please see the documentation for all configuration options:
4 | # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5 |
6 | version: 2
7 | enable-beta-ecosystems: true
8 | updates:
9 | - package-ecosystem: "pub"
10 | directory: "/"
11 | schedule:
12 | interval: "weekly"
13 |
14 | - package-ecosystem: "pub"
15 | directory: "/flatpak/scripts"
16 | schedule:
17 | interval: "weekly"
18 |
19 | - package-ecosystem: "github-actions"
20 | directory: "/"
21 | schedule:
22 | interval: "daily"
--------------------------------------------------------------------------------
/.github/pull_request_template.md:
--------------------------------------------------------------------------------
1 | # Proposed Changes
2 |
3 | -
4 | -
5 |
6 | ## Related Issue(s)
7 |
8 | If applicable, please link to any related issues (`Closes #123`,
9 | `Closes wger-project/other-repo#123`, `See also #123`, etc.)
10 |
11 | ## Please check that the PR fulfills these requirements
12 |
13 | - [ ] Tests for the changes have been added (for bug fixes / features)
14 | - [ ] Set a 100 character limit in your editor/IDE to avoid white space diffs in the PR
15 | (run `dart format --line-length=100 .`)
16 | - [ ] Updated/added relevant documentation (doc comments with `///`).
17 | - [ ] Added relevant reviewers.
18 |
--------------------------------------------------------------------------------
/.github/release.yml:
--------------------------------------------------------------------------------
1 | # https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes
2 | changelog:
3 | categories:
4 | - title: Features
5 | labels:
6 | - '*'
7 | exclude:
8 | labels:
9 | - dependencies
10 | - title: Dependencies
11 | labels:
12 | - dependencies
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "dart.lineLength": 100,
3 | "diffEditor.ignoreTrimWhitespace": true
4 | }
5 |
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | 🚀 Features:
2 | * ...
3 |
4 |
5 | 🐛 Bug Fixes:
6 | * ...
7 |
8 |
9 | 🧰 Maintenance:
10 | * ...
11 |
12 |
--------------------------------------------------------------------------------
/CHANGELOG.template.md:
--------------------------------------------------------------------------------
1 | 🚀 Features:
2 | * ...
3 |
4 |
5 | 🐛 Bug Fixes:
6 | * ...
7 |
8 |
9 | 🧰 Maintenance:
10 | * ...
--------------------------------------------------------------------------------
/Gemfile:
--------------------------------------------------------------------------------
1 | source "https://rubygems.org"
2 |
3 | gem "fastlane"
4 | gem 'logger'
5 | gem 'mutex_m'
6 | gem 'abbrev'
7 |
8 | plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
9 | eval_gemfile(plugins_path) if File.exist?(plugins_path)
10 |
--------------------------------------------------------------------------------
/android/.gitignore:
--------------------------------------------------------------------------------
1 | gradle-wrapper.jar
2 | /.gradle
3 | /captures/
4 | /gradlew
5 | /gradlew.bat
6 | /local.properties
7 | GeneratedPluginRegistrant.java
8 |
--------------------------------------------------------------------------------
/android/Gemfile:
--------------------------------------------------------------------------------
1 | source "https://rubygems.org"
2 |
3 | gem "fastlane"
4 | gem "fastlane-plugin-flutter_version", git: "https://github.com/tianhaoz95/fastlane-plugin-flutter-version"
5 |
6 | plugins_path = File.join(File.dirname(__FILE__), './fastlane', 'Pluginfile')
7 | eval_gemfile(plugins_path) if File.exist?(plugins_path)
8 |
--------------------------------------------------------------------------------
/android/app/src/main/kotlin/de/wger/flutter/MainActivity.kt:
--------------------------------------------------------------------------------
1 | package de.wger.flutter
2 |
3 | import io.flutter.embedding.android.FlutterActivity
4 |
5 | class MainActivity: FlutterActivity() {
6 | }
7 |
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable/ic_launcher_foreground.xml:
--------------------------------------------------------------------------------
1 |
6 |
10 |
11 |
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable/launch_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
12 |
13 |
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #2a4c7d
4 |
--------------------------------------------------------------------------------
/android/app/src/main/res/xml/network_security_config.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/android/app/src/profile/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/android/gradle.properties:
--------------------------------------------------------------------------------
1 | org.gradle.jvmargs=-Xmx1536M
2 | android.enableR8=true
3 | android.useAndroidX=true
4 | android.enableJetifier=true
5 |
--------------------------------------------------------------------------------
/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | distributionBase=GRADLE_USER_HOME
2 | distributionPath=wrapper/dists
3 | zipStoreBase=GRADLE_USER_HOME
4 | zipStorePath=wrapper/dists
5 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-all.zip
--------------------------------------------------------------------------------
/assets/animations/wger_logo.riv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/assets/animations/wger_logo.riv
--------------------------------------------------------------------------------
/assets/fonts/RobotoCondensed-VariableFont_wght.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/assets/fonts/RobotoCondensed-VariableFont_wght.ttf
--------------------------------------------------------------------------------
/assets/images/logo-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/assets/images/logo-white.png
--------------------------------------------------------------------------------
/assets/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/assets/images/logo.png
--------------------------------------------------------------------------------
/assets/images/placeholder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/assets/images/placeholder.png
--------------------------------------------------------------------------------
/assets_dev/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/assets_dev/logo.png
--------------------------------------------------------------------------------
/dart_test.yaml:
--------------------------------------------------------------------------------
1 | tags:
2 | golden: { }
--------------------------------------------------------------------------------
/devtools_options.yaml:
--------------------------------------------------------------------------------
1 | extensions:
2 | - drift: true
3 | - provider: true
--------------------------------------------------------------------------------
/fastlane/Appfile:
--------------------------------------------------------------------------------
1 | json_key_file("fastlane/metadata/android/envfiles/playstore.json")
2 | package_name("de.wger.flutter")
--------------------------------------------------------------------------------
/fastlane/Pluginfile:
--------------------------------------------------------------------------------
1 | # Autogenerated by fastlane
2 | #
3 | # Ensure this file is checked in to source control!
4 |
5 | gem 'fastlane-plugin-versioning'
6 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/README.md:
--------------------------------------------------------------------------------
1 | # Release process
2 |
3 | Moved to
--------------------------------------------------------------------------------
/fastlane/metadata/android/ar/short_description.txt:
--------------------------------------------------------------------------------
1 | متتبع التمارين الرياضية، التغذية، ومراقبة الوزن
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/ca/images/phoneScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ca/images/phoneScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ca/images/phoneScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ca/images/phoneScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ca/images/phoneScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ca/images/phoneScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ca/images/phoneScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ca/images/phoneScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ca/images/phoneScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ca/images/phoneScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ca/images/phoneScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ca/images/phoneScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ca/images/sevenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ca/images/sevenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ca/images/sevenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ca/images/sevenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ca/images/sevenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ca/images/sevenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ca/images/sevenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ca/images/sevenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ca/images/sevenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ca/images/sevenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ca/images/sevenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ca/images/sevenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ca/images/tenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ca/images/tenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ca/images/tenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ca/images/tenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ca/images/tenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ca/images/tenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ca/images/tenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ca/images/tenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ca/images/tenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ca/images/tenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ca/images/tenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ca/images/tenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ca/short_description.txt:
--------------------------------------------------------------------------------
1 | Registre de la forma física, entrenament, nutrició i pes corporal
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/ca/title.txt:
--------------------------------------------------------------------------------
1 | wger Workout Manager
--------------------------------------------------------------------------------
/fastlane/metadata/android/cs-CZ/images/phoneScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/cs-CZ/images/phoneScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/cs-CZ/images/phoneScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/cs-CZ/images/phoneScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/cs-CZ/images/phoneScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/cs-CZ/images/phoneScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/cs-CZ/images/phoneScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/cs-CZ/images/phoneScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/cs-CZ/images/phoneScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/cs-CZ/images/phoneScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/cs-CZ/images/phoneScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/cs-CZ/images/phoneScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/cs-CZ/images/sevenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/cs-CZ/images/sevenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/cs-CZ/images/sevenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/cs-CZ/images/sevenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/cs-CZ/images/sevenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/cs-CZ/images/sevenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/cs-CZ/images/sevenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/cs-CZ/images/sevenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/cs-CZ/images/sevenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/cs-CZ/images/sevenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/cs-CZ/images/sevenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/cs-CZ/images/sevenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/cs-CZ/images/tenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/cs-CZ/images/tenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/cs-CZ/images/tenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/cs-CZ/images/tenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/cs-CZ/images/tenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/cs-CZ/images/tenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/cs-CZ/images/tenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/cs-CZ/images/tenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/cs-CZ/images/tenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/cs-CZ/images/tenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/cs-CZ/images/tenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/cs-CZ/images/tenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/cs-CZ/short_description.txt:
--------------------------------------------------------------------------------
1 | Sledování fitness/tréninků, výživy a hmotnosti
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/cs-CZ/title.txt:
--------------------------------------------------------------------------------
1 | wger Workout Manager
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/de-DE/images/phoneScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/de-DE/images/phoneScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/de-DE/images/phoneScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/de-DE/images/phoneScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/de-DE/images/phoneScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/de-DE/images/phoneScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/de-DE/images/phoneScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/de-DE/images/phoneScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/de-DE/images/phoneScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/de-DE/images/phoneScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/de-DE/images/phoneScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/de-DE/images/phoneScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/de-DE/images/sevenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/de-DE/images/sevenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/de-DE/images/sevenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/de-DE/images/sevenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/de-DE/images/sevenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/de-DE/images/sevenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/de-DE/images/sevenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/de-DE/images/sevenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/de-DE/images/sevenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/de-DE/images/sevenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/de-DE/images/sevenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/de-DE/images/sevenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/de-DE/images/tenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/de-DE/images/tenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/de-DE/images/tenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/de-DE/images/tenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/de-DE/images/tenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/de-DE/images/tenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/de-DE/images/tenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/de-DE/images/tenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/de-DE/images/tenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/de-DE/images/tenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/de-DE/images/tenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/de-DE/images/tenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/de-DE/short_description.txt:
--------------------------------------------------------------------------------
1 | Fitness-, Ernährungs- und Gewichtstracker
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/de-DE/title.txt:
--------------------------------------------------------------------------------
1 | wger Workout Manager
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/el-GR/images/phoneScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/el-GR/images/phoneScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/el-GR/images/phoneScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/el-GR/images/phoneScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/el-GR/images/phoneScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/el-GR/images/phoneScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/el-GR/images/phoneScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/el-GR/images/phoneScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/el-GR/images/phoneScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/el-GR/images/phoneScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/el-GR/images/phoneScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/el-GR/images/phoneScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/el-GR/images/sevenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/el-GR/images/sevenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/el-GR/images/sevenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/el-GR/images/sevenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/el-GR/images/sevenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/el-GR/images/sevenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/el-GR/images/sevenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/el-GR/images/sevenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/el-GR/images/sevenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/el-GR/images/sevenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/el-GR/images/sevenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/el-GR/images/sevenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/el-GR/images/tenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/el-GR/images/tenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/el-GR/images/tenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/el-GR/images/tenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/el-GR/images/tenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/el-GR/images/tenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/el-GR/images/tenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/el-GR/images/tenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/el-GR/images/tenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/el-GR/images/tenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/el-GR/images/tenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/el-GR/images/tenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/el-GR/short_description.txt:
--------------------------------------------------------------------------------
1 | Καταγραφή φυσικής κατάστασης/προπόνησης, διατροφής και βάρους
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/el-GR/title.txt:
--------------------------------------------------------------------------------
1 | wger Workout Manager
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/en-US/images/icon.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/phoneScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/en-US/images/phoneScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/phoneScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/en-US/images/phoneScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/phoneScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/en-US/images/phoneScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/phoneScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/en-US/images/phoneScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/phoneScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/en-US/images/phoneScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/phoneScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/en-US/images/phoneScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/sevenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/en-US/images/sevenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/sevenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/en-US/images/sevenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/sevenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/en-US/images/sevenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/sevenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/en-US/images/sevenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/sevenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/en-US/images/sevenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/sevenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/en-US/images/sevenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/tenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/en-US/images/tenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/tenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/en-US/images/tenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/tenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/en-US/images/tenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/tenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/en-US/images/tenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/tenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/en-US/images/tenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/images/tenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/en-US/images/tenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/short_description.txt:
--------------------------------------------------------------------------------
1 | Fitness/workout, nutrition and weight tracker
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/en-US/title.txt:
--------------------------------------------------------------------------------
1 | wger Workout Manager
--------------------------------------------------------------------------------
/fastlane/metadata/android/es-ES/images/phoneScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/es-ES/images/phoneScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/es-ES/images/phoneScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/es-ES/images/phoneScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/es-ES/images/phoneScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/es-ES/images/phoneScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/es-ES/images/phoneScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/es-ES/images/phoneScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/es-ES/images/phoneScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/es-ES/images/phoneScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/es-ES/images/phoneScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/es-ES/images/phoneScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/es-ES/images/sevenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/es-ES/images/sevenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/es-ES/images/sevenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/es-ES/images/sevenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/es-ES/images/sevenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/es-ES/images/sevenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/es-ES/images/sevenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/es-ES/images/sevenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/es-ES/images/sevenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/es-ES/images/sevenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/es-ES/images/sevenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/es-ES/images/sevenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/es-ES/images/tenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/es-ES/images/tenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/es-ES/images/tenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/es-ES/images/tenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/es-ES/images/tenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/es-ES/images/tenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/es-ES/images/tenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/es-ES/images/tenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/es-ES/images/tenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/es-ES/images/tenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/es-ES/images/tenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/es-ES/images/tenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/es-ES/short_description.txt:
--------------------------------------------------------------------------------
1 | Monitor de entrenamiento, peso y nutrición
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/es-ES/title.txt:
--------------------------------------------------------------------------------
1 | wger Workout Manager
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/fr-FR/images/phoneScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/fr-FR/images/phoneScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/fr-FR/images/phoneScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/fr-FR/images/phoneScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/fr-FR/images/phoneScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/fr-FR/images/phoneScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/fr-FR/images/phoneScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/fr-FR/images/phoneScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/fr-FR/images/phoneScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/fr-FR/images/phoneScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/fr-FR/images/phoneScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/fr-FR/images/phoneScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/fr-FR/images/sevenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/fr-FR/images/sevenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/fr-FR/images/sevenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/fr-FR/images/sevenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/fr-FR/images/sevenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/fr-FR/images/sevenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/fr-FR/images/sevenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/fr-FR/images/sevenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/fr-FR/images/sevenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/fr-FR/images/sevenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/fr-FR/images/sevenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/fr-FR/images/sevenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/fr-FR/images/tenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/fr-FR/images/tenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/fr-FR/images/tenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/fr-FR/images/tenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/fr-FR/images/tenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/fr-FR/images/tenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/fr-FR/images/tenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/fr-FR/images/tenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/fr-FR/images/tenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/fr-FR/images/tenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/fr-FR/images/tenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/fr-FR/images/tenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/fr-FR/short_description.txt:
--------------------------------------------------------------------------------
1 | Fitness/entraînement, nutrition et traqueur de poids
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/fr-FR/title.txt:
--------------------------------------------------------------------------------
1 | wger Workout Manager
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/hi-IN/images/phoneScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hi-IN/images/phoneScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hi-IN/images/phoneScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hi-IN/images/phoneScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hi-IN/images/phoneScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hi-IN/images/phoneScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hi-IN/images/phoneScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hi-IN/images/phoneScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hi-IN/images/phoneScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hi-IN/images/phoneScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hi-IN/images/phoneScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hi-IN/images/phoneScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hi-IN/images/sevenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hi-IN/images/sevenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hi-IN/images/sevenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hi-IN/images/sevenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hi-IN/images/sevenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hi-IN/images/sevenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hi-IN/images/sevenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hi-IN/images/sevenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hi-IN/images/sevenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hi-IN/images/sevenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hi-IN/images/sevenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hi-IN/images/sevenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hi-IN/images/tenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hi-IN/images/tenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hi-IN/images/tenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hi-IN/images/tenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hi-IN/images/tenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hi-IN/images/tenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hi-IN/images/tenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hi-IN/images/tenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hi-IN/images/tenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hi-IN/images/tenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hi-IN/images/tenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hi-IN/images/tenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hi-IN/short_description.txt:
--------------------------------------------------------------------------------
1 | फिटनेस/वर्कआउट, नुट्रिशन और वज़न ट्रैकर
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/hi-IN/title.txt:
--------------------------------------------------------------------------------
1 | wger Workout Manager
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/hr/images/phoneScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hr/images/phoneScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hr/images/phoneScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hr/images/phoneScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hr/images/phoneScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hr/images/phoneScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hr/images/phoneScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hr/images/phoneScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hr/images/phoneScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hr/images/phoneScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hr/images/phoneScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hr/images/phoneScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hr/images/sevenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hr/images/sevenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hr/images/sevenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hr/images/sevenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hr/images/sevenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hr/images/sevenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hr/images/sevenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hr/images/sevenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hr/images/sevenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hr/images/sevenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hr/images/sevenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hr/images/sevenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hr/images/tenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hr/images/tenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hr/images/tenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hr/images/tenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hr/images/tenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hr/images/tenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hr/images/tenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hr/images/tenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hr/images/tenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hr/images/tenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hr/images/tenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/hr/images/tenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/hr/short_description.txt:
--------------------------------------------------------------------------------
1 | Praćenje fitnesa/treninga, prehrane i težine
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/hr/title.txt:
--------------------------------------------------------------------------------
1 | wger Workout Manager
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/it-IT/images/phoneScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/it-IT/images/phoneScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/it-IT/images/phoneScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/it-IT/images/phoneScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/it-IT/images/phoneScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/it-IT/images/phoneScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/it-IT/images/phoneScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/it-IT/images/phoneScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/it-IT/images/phoneScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/it-IT/images/phoneScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/it-IT/images/phoneScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/it-IT/images/phoneScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/it-IT/images/sevenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/it-IT/images/sevenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/it-IT/images/sevenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/it-IT/images/sevenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/it-IT/images/sevenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/it-IT/images/sevenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/it-IT/images/sevenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/it-IT/images/sevenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/it-IT/images/sevenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/it-IT/images/sevenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/it-IT/images/sevenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/it-IT/images/sevenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/it-IT/images/tenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/it-IT/images/tenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/it-IT/images/tenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/it-IT/images/tenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/it-IT/images/tenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/it-IT/images/tenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/it-IT/images/tenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/it-IT/images/tenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/it-IT/images/tenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/it-IT/images/tenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/it-IT/images/tenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/it-IT/images/tenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/it-IT/short_description.txt:
--------------------------------------------------------------------------------
1 | Monitoraggio fitness/workout, dieta e peso
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/it-IT/title.txt:
--------------------------------------------------------------------------------
1 | wger Workout Manager
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/nb-NO/full_description.txt:
--------------------------------------------------------------------------------
1 | wger (ˈvɛɡɐ) er gemenhetslig fri programvare som hjelper din helse.
2 |
3 | - Planlegg treningsøkter og ernæring
4 | - Lagre øvelser og kommenter dem
5 | - Helsestudio-modus
6 | - Dagbok og utviklingssporing
7 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/nb-NO/images/phoneScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/nb-NO/images/phoneScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/nb-NO/images/phoneScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/nb-NO/images/phoneScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/nb-NO/images/phoneScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/nb-NO/images/phoneScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/nb-NO/images/phoneScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/nb-NO/images/phoneScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/nb-NO/images/phoneScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/nb-NO/images/phoneScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/nb-NO/images/phoneScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/nb-NO/images/phoneScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/nb-NO/images/sevenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/nb-NO/images/sevenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/nb-NO/images/sevenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/nb-NO/images/sevenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/nb-NO/images/sevenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/nb-NO/images/sevenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/nb-NO/images/sevenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/nb-NO/images/sevenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/nb-NO/images/sevenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/nb-NO/images/sevenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/nb-NO/images/sevenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/nb-NO/images/sevenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/nb-NO/images/tenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/nb-NO/images/tenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/nb-NO/images/tenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/nb-NO/images/tenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/nb-NO/images/tenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/nb-NO/images/tenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/nb-NO/images/tenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/nb-NO/images/tenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/nb-NO/images/tenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/nb-NO/images/tenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/nb-NO/images/tenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/nb-NO/images/tenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/nb-NO/short_description.txt:
--------------------------------------------------------------------------------
1 | Fitness/treningsøkt, ernæring og vektlogging
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/nb-NO/title.txt:
--------------------------------------------------------------------------------
1 | wger Workout Manager
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/pl-PL/images/phoneScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pl-PL/images/phoneScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pl-PL/images/phoneScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pl-PL/images/phoneScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pl-PL/images/phoneScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pl-PL/images/phoneScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pl-PL/images/phoneScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pl-PL/images/phoneScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pl-PL/images/phoneScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pl-PL/images/phoneScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pl-PL/images/phoneScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pl-PL/images/phoneScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pl-PL/images/sevenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pl-PL/images/sevenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pl-PL/images/sevenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pl-PL/images/sevenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pl-PL/images/sevenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pl-PL/images/sevenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pl-PL/images/sevenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pl-PL/images/sevenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pl-PL/images/sevenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pl-PL/images/sevenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pl-PL/images/sevenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pl-PL/images/sevenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pl-PL/images/tenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pl-PL/images/tenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pl-PL/images/tenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pl-PL/images/tenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pl-PL/images/tenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pl-PL/images/tenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pl-PL/images/tenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pl-PL/images/tenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pl-PL/images/tenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pl-PL/images/tenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pl-PL/images/tenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pl-PL/images/tenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pl-PL/short_description.txt:
--------------------------------------------------------------------------------
1 | Monitorowanie kondycji/treningu, odżywiania i wagi
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/pl-PL/title.txt:
--------------------------------------------------------------------------------
1 | wger Workout Manager
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-BR/images/phoneScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-BR/images/phoneScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-BR/images/phoneScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-BR/images/phoneScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-BR/images/phoneScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-BR/images/phoneScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-BR/images/phoneScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-BR/images/phoneScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-BR/images/phoneScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-BR/images/phoneScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-BR/images/phoneScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-BR/images/phoneScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-BR/images/sevenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-BR/images/sevenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-BR/images/sevenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-BR/images/sevenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-BR/images/sevenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-BR/images/sevenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-BR/images/sevenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-BR/images/sevenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-BR/images/sevenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-BR/images/sevenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-BR/images/sevenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-BR/images/sevenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-BR/images/tenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-BR/images/tenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-BR/images/tenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-BR/images/tenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-BR/images/tenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-BR/images/tenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-BR/images/tenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-BR/images/tenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-BR/images/tenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-BR/images/tenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-BR/images/tenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-BR/images/tenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-BR/short_description.txt:
--------------------------------------------------------------------------------
1 | Fitness/treino, nutrição e controle de peso
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-BR/title.txt:
--------------------------------------------------------------------------------
1 | wger Workout Manager
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-PT/images/phoneScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-PT/images/phoneScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-PT/images/phoneScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-PT/images/phoneScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-PT/images/phoneScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-PT/images/phoneScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-PT/images/phoneScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-PT/images/phoneScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-PT/images/phoneScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-PT/images/phoneScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-PT/images/phoneScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-PT/images/phoneScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-PT/images/sevenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-PT/images/sevenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-PT/images/sevenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-PT/images/sevenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-PT/images/sevenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-PT/images/sevenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-PT/images/sevenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-PT/images/sevenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-PT/images/sevenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-PT/images/sevenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-PT/images/sevenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-PT/images/sevenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-PT/images/tenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-PT/images/tenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-PT/images/tenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-PT/images/tenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-PT/images/tenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-PT/images/tenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-PT/images/tenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-PT/images/tenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-PT/images/tenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-PT/images/tenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-PT/images/tenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/pt-PT/images/tenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-PT/short_description.txt:
--------------------------------------------------------------------------------
1 | Monitore seus treinos e dieta
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/pt-PT/title.txt:
--------------------------------------------------------------------------------
1 | wger Workout Manager
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/ru-RU/images/phoneScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ru-RU/images/phoneScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ru-RU/images/phoneScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ru-RU/images/phoneScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ru-RU/images/phoneScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ru-RU/images/phoneScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ru-RU/images/phoneScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ru-RU/images/phoneScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ru-RU/images/phoneScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ru-RU/images/phoneScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ru-RU/images/phoneScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ru-RU/images/phoneScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ru-RU/images/sevenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ru-RU/images/sevenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ru-RU/images/sevenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ru-RU/images/sevenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ru-RU/images/sevenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ru-RU/images/sevenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ru-RU/images/sevenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ru-RU/images/sevenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ru-RU/images/sevenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ru-RU/images/sevenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ru-RU/images/sevenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ru-RU/images/sevenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ru-RU/images/tenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ru-RU/images/tenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ru-RU/images/tenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ru-RU/images/tenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ru-RU/images/tenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ru-RU/images/tenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ru-RU/images/tenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ru-RU/images/tenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ru-RU/images/tenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ru-RU/images/tenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ru-RU/images/tenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/ru-RU/images/tenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/ru-RU/short_description.txt:
--------------------------------------------------------------------------------
1 | Трекер фитнеса/тренировок, питания и веса
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/ru-RU/title.txt:
--------------------------------------------------------------------------------
1 | wger Workout Manager
--------------------------------------------------------------------------------
/fastlane/metadata/android/sr/images/phoneScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/sr/images/phoneScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/sr/images/phoneScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/sr/images/phoneScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/sr/images/phoneScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/sr/images/phoneScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/sr/images/phoneScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/sr/images/phoneScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/sr/images/phoneScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/sr/images/phoneScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/sr/images/phoneScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/sr/images/phoneScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/sr/images/sevenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/sr/images/sevenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/sr/images/sevenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/sr/images/sevenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/sr/images/sevenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/sr/images/sevenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/sr/images/sevenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/sr/images/sevenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/sr/images/sevenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/sr/images/sevenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/sr/images/sevenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/sr/images/sevenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/sr/images/tenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/sr/images/tenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/sr/images/tenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/sr/images/tenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/sr/images/tenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/sr/images/tenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/sr/images/tenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/sr/images/tenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/sr/images/tenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/sr/images/tenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/sr/images/tenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/sr/images/tenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/sr/short_description.txt:
--------------------------------------------------------------------------------
1 | Фитнес/тренинг, исхрана и праћење тежине
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/sr/title.txt:
--------------------------------------------------------------------------------
1 | wger Workout Manager
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/ta-IN/short_description.txt:
--------------------------------------------------------------------------------
1 | உடற்தகுதி/உடற்பயிற்சி, ஊட்டச்சத்து மற்றும் எடை கண்காணிப்பு
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/ta-IN/title.txt:
--------------------------------------------------------------------------------
1 | wger Workout Manager
--------------------------------------------------------------------------------
/fastlane/metadata/android/tr-TR/images/phoneScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/tr-TR/images/phoneScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/tr-TR/images/phoneScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/tr-TR/images/phoneScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/tr-TR/images/phoneScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/tr-TR/images/phoneScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/tr-TR/images/phoneScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/tr-TR/images/phoneScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/tr-TR/images/phoneScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/tr-TR/images/phoneScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/tr-TR/images/phoneScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/tr-TR/images/phoneScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/tr-TR/images/sevenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/tr-TR/images/sevenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/tr-TR/images/sevenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/tr-TR/images/sevenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/tr-TR/images/sevenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/tr-TR/images/sevenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/tr-TR/images/sevenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/tr-TR/images/sevenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/tr-TR/images/sevenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/tr-TR/images/sevenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/tr-TR/images/sevenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/tr-TR/images/sevenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/tr-TR/images/tenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/tr-TR/images/tenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/tr-TR/images/tenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/tr-TR/images/tenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/tr-TR/images/tenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/tr-TR/images/tenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/tr-TR/images/tenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/tr-TR/images/tenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/tr-TR/images/tenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/tr-TR/images/tenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/tr-TR/images/tenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/tr-TR/images/tenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/tr-TR/short_description.txt:
--------------------------------------------------------------------------------
1 | Fitness/egzersiz, beslenme ve kilo takibi
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/tr-TR/title.txt:
--------------------------------------------------------------------------------
1 | wger Workout Manager
--------------------------------------------------------------------------------
/fastlane/metadata/android/uk/images/phoneScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/uk/images/phoneScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/uk/images/phoneScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/uk/images/phoneScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/uk/images/phoneScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/uk/images/phoneScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/uk/images/phoneScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/uk/images/phoneScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/uk/images/phoneScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/uk/images/phoneScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/uk/images/phoneScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/uk/images/phoneScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/uk/images/sevenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/uk/images/sevenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/uk/images/sevenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/uk/images/sevenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/uk/images/sevenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/uk/images/sevenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/uk/images/sevenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/uk/images/sevenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/uk/images/sevenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/uk/images/sevenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/uk/images/sevenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/uk/images/sevenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/uk/images/tenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/uk/images/tenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/uk/images/tenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/uk/images/tenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/uk/images/tenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/uk/images/tenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/uk/images/tenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/uk/images/tenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/uk/images/tenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/uk/images/tenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/uk/images/tenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/uk/images/tenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/uk/short_description.txt:
--------------------------------------------------------------------------------
1 | Фітнес/тренування, харчування та відстеження ваги
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/uk/title.txt:
--------------------------------------------------------------------------------
1 | wger Workout Manager
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-CN/images/phoneScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-CN/images/phoneScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-CN/images/phoneScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-CN/images/phoneScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-CN/images/phoneScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-CN/images/phoneScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-CN/images/phoneScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-CN/images/phoneScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-CN/images/phoneScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-CN/images/phoneScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-CN/images/phoneScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-CN/images/phoneScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-CN/images/sevenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-CN/images/sevenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-CN/images/sevenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-CN/images/sevenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-CN/images/sevenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-CN/images/sevenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-CN/images/sevenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-CN/images/sevenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-CN/images/sevenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-CN/images/sevenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-CN/images/sevenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-CN/images/sevenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-CN/images/tenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-CN/images/tenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-CN/images/tenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-CN/images/tenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-CN/images/tenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-CN/images/tenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-CN/images/tenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-CN/images/tenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-CN/images/tenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-CN/images/tenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-CN/images/tenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-CN/images/tenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-CN/short_description.txt:
--------------------------------------------------------------------------------
1 | 健身/锻炼、营养和体重追踪器
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-CN/title.txt:
--------------------------------------------------------------------------------
1 | wger Workout Manager
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-TW/images/phoneScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-TW/images/phoneScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-TW/images/phoneScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-TW/images/phoneScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-TW/images/phoneScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-TW/images/phoneScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-TW/images/phoneScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-TW/images/phoneScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-TW/images/phoneScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-TW/images/phoneScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-TW/images/phoneScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-TW/images/phoneScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-TW/images/sevenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-TW/images/sevenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-TW/images/sevenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-TW/images/sevenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-TW/images/sevenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-TW/images/sevenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-TW/images/sevenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-TW/images/sevenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-TW/images/sevenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-TW/images/sevenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-TW/images/sevenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-TW/images/sevenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-TW/images/tenInchScreenshots/01 - dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-TW/images/tenInchScreenshots/01 - dashboard.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-TW/images/tenInchScreenshots/02 - workout detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-TW/images/tenInchScreenshots/02 - workout detail.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-TW/images/tenInchScreenshots/03 - gym mode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-TW/images/tenInchScreenshots/03 - gym mode.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-TW/images/tenInchScreenshots/04 - measurements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-TW/images/tenInchScreenshots/04 - measurements.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-TW/images/tenInchScreenshots/05 - nutritional plan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-TW/images/tenInchScreenshots/05 - nutritional plan.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-TW/images/tenInchScreenshots/06 - weight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/android/zh-TW/images/tenInchScreenshots/06 - weight.png
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-TW/short_description.txt:
--------------------------------------------------------------------------------
1 | 健身、營養和體重紀錄器
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/android/zh-TW/title.txt:
--------------------------------------------------------------------------------
1 | wger Workout Manager
2 |
--------------------------------------------------------------------------------
/fastlane/metadata/envfiles/key.properties.gpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/envfiles/key.properties.gpg
--------------------------------------------------------------------------------
/fastlane/metadata/envfiles/keys.jks.gpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/envfiles/keys.jks.gpg
--------------------------------------------------------------------------------
/fastlane/metadata/envfiles/playstore.json.gpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/fastlane/metadata/envfiles/playstore.json.gpg
--------------------------------------------------------------------------------
/fastlane/report.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/integration_test/README.md:
--------------------------------------------------------------------------------
1 | This will generate some screenshots and save them to the Play Store metadata folder.
2 |
3 | 1) Set the correct value for the device size by setting the `destination` variable
4 | 2) Start the correct emulator and
5 | run `flutter drive --driver=test_driver/screenshot_driver.dart --target=integration_test/make_screenshots_test.dart`
6 | 3) If you get errors or the screenshots are not written to disk, edit the
7 | `languages` list and comment some of the languages
8 |
9 | See also
10 |
11 | *
12 | *
13 |
--------------------------------------------------------------------------------
/ios/.gitignore:
--------------------------------------------------------------------------------
1 | *.mode1v3
2 | *.mode2v3
3 | *.moved-aside
4 | *.pbxuser
5 | *.perspectivev3
6 | **/*sync/
7 | .sconsign.dblite
8 | .tags*
9 | **/.vagrant/
10 | **/DerivedData/
11 | Icon?
12 | **/Pods/
13 | **/.symlinks/
14 | profile
15 | xcuserdata
16 | **/.generated/
17 | Flutter/App.framework
18 | Flutter/Flutter.framework
19 | Flutter/Flutter.podspec
20 | Flutter/Generated.xcconfig
21 | Flutter/app.flx
22 | Flutter/app.zip
23 | Flutter/flutter_assets/
24 | Flutter/flutter_export_environment.sh
25 | ServiceDefinitions.json
26 | Runner/GeneratedPluginRegistrant.*
27 |
28 | # Exceptions to above rules.
29 | !default.mode1v3
30 | !default.mode2v3
31 | !default.pbxuser
32 | !default.perspectivev3
33 |
--------------------------------------------------------------------------------
/ios/Flutter/Debug.xcconfig:
--------------------------------------------------------------------------------
1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
2 | #include "Generated.xcconfig"
3 |
--------------------------------------------------------------------------------
/ios/Flutter/Release.xcconfig:
--------------------------------------------------------------------------------
1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
2 | #include "Generated.xcconfig"
3 |
--------------------------------------------------------------------------------
/ios/Gemfile:
--------------------------------------------------------------------------------
1 | source "https://rubygems.org"
2 |
3 | gem "fastlane"
4 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PreviewsEnabled
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/Runner.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PreviewsEnabled
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/Runner/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | import UIKit
2 | import Flutter
3 |
4 | @main
5 | @objc class AppDelegate: FlutterAppDelegate {
6 | override func application(
7 | _ application: UIApplication,
8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
9 | ) -> Bool {
10 | GeneratedPluginRegistrant.register(with: self)
11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions)
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/Runner/Assets.xcassets/AppIcon.appiconset/100.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/Runner/Assets.xcassets/AppIcon.appiconset/144.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/152.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/Runner/Assets.xcassets/AppIcon.appiconset/152.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/167.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/Runner/Assets.xcassets/AppIcon.appiconset/167.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/Runner/Assets.xcassets/AppIcon.appiconset/20.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/Runner/Assets.xcassets/AppIcon.appiconset/40.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/Runner/Assets.xcassets/AppIcon.appiconset/50.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/57.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/Runner/Assets.xcassets/AppIcon.appiconset/57.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/58.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/Runner/Assets.xcassets/AppIcon.appiconset/58.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/Runner/Assets.xcassets/AppIcon.appiconset/60.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/Runner/Assets.xcassets/AppIcon.appiconset/72.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/Runner/Assets.xcassets/AppIcon.appiconset/76.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/80.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/Runner/Assets.xcassets/AppIcon.appiconset/80.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/87.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/Runner/Assets.xcassets/AppIcon.appiconset/87.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "author" : "xcode",
4 | "version" : 1
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "universal",
5 | "filename" : "LaunchImage.png",
6 | "scale" : "1x"
7 | },
8 | {
9 | "idiom" : "universal",
10 | "filename" : "LaunchImage@2x.png",
11 | "scale" : "2x"
12 | },
13 | {
14 | "idiom" : "universal",
15 | "filename" : "LaunchImage@3x.png",
16 | "scale" : "3x"
17 | }
18 | ],
19 | "info" : {
20 | "version" : 1,
21 | "author" : "xcode"
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md:
--------------------------------------------------------------------------------
1 | # Launch Screen Assets
2 |
3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory.
4 |
5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images.
--------------------------------------------------------------------------------
/ios/Runner/Runner-Bridging-Header.h:
--------------------------------------------------------------------------------
1 | #import "GeneratedPluginRegistrant.h"
2 |
--------------------------------------------------------------------------------
/ios/Runner/Runner.entitlements:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | aps-environment
6 | development
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/build/.last_build_id:
--------------------------------------------------------------------------------
1 | ce49e7d90cd902197f9a9cbc84219d23
--------------------------------------------------------------------------------
/ios/fastlane/Appfile:
--------------------------------------------------------------------------------
1 | app_identifier("de.wger.flutter.community") # The bundle identifier of your app
2 | apple_id(ENV["APPLE_ID"]) # Your Apple Developer Portal username
3 |
4 | itc_team_id(ENV["ITC_TEAM_ID"]) # App Store Connect Team ID
5 | team_id(ENV["TEAM_ID"]) # Developer Portal Team ID
6 |
--------------------------------------------------------------------------------
/ios/fastlane/Deliverfile:
--------------------------------------------------------------------------------
1 | # The Deliverfile allows you to store various App Store Connect metadata
2 | # For more information, check out the docs
3 | # https://docs.fastlane.tools/actions/deliver/
4 |
--------------------------------------------------------------------------------
/ios/fastlane/metadata/copyright.txt:
--------------------------------------------------------------------------------
1 | wger Project
2 |
--------------------------------------------------------------------------------
/ios/fastlane/metadata/de-DE/apple_tv_privacy_policy.txt:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/ios/fastlane/metadata/de-DE/keywords.txt:
--------------------------------------------------------------------------------
1 | wger Workout Ernährung Fitness
2 |
--------------------------------------------------------------------------------
/ios/fastlane/metadata/de-DE/marketing_url.txt:
--------------------------------------------------------------------------------
1 | https://wger.de/de/software/features
2 |
--------------------------------------------------------------------------------
/ios/fastlane/metadata/de-DE/name.txt:
--------------------------------------------------------------------------------
1 | wger Workout Manager
2 |
--------------------------------------------------------------------------------
/ios/fastlane/metadata/de-DE/privacy_url.txt:
--------------------------------------------------------------------------------
1 | https://wger.de/de/software/terms-of-service
2 |
--------------------------------------------------------------------------------
/ios/fastlane/metadata/de-DE/promotional_text.txt:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/ios/fastlane/metadata/de-DE/release_notes.txt:
--------------------------------------------------------------------------------
1 | UI Verbesserungen, Übersetzungen aktualisiert, Fehlerbehebungen
2 |
--------------------------------------------------------------------------------
/ios/fastlane/metadata/de-DE/subtitle.txt:
--------------------------------------------------------------------------------
1 | OpenSource Fitness-Tracker
2 |
--------------------------------------------------------------------------------
/ios/fastlane/metadata/de-DE/support_url.txt:
--------------------------------------------------------------------------------
1 | https://wger.de/en/software/about-us
2 |
--------------------------------------------------------------------------------
/ios/fastlane/metadata/primary_category.txt:
--------------------------------------------------------------------------------
1 | HEALTH_AND_FITNESS
2 |
--------------------------------------------------------------------------------
/ios/fastlane/metadata/primary_first_sub_category.txt:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/ios/fastlane/metadata/primary_second_sub_category.txt:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/ios/fastlane/metadata/review_information/demo_password.txt:
--------------------------------------------------------------------------------
1 | flutteruser
2 |
--------------------------------------------------------------------------------
/ios/fastlane/metadata/review_information/demo_user.txt:
--------------------------------------------------------------------------------
1 | user
2 |
--------------------------------------------------------------------------------
/ios/fastlane/metadata/review_information/email_address.txt:
--------------------------------------------------------------------------------
1 | software@thweb.net
2 |
--------------------------------------------------------------------------------
/ios/fastlane/metadata/review_information/first_name.txt:
--------------------------------------------------------------------------------
1 | Peter
2 |
--------------------------------------------------------------------------------
/ios/fastlane/metadata/review_information/last_name.txt:
--------------------------------------------------------------------------------
1 | Thaler
2 |
--------------------------------------------------------------------------------
/ios/fastlane/metadata/review_information/notes.txt:
--------------------------------------------------------------------------------
1 | Testserver: https://wger-master.rge.uber.space
2 |
3 | ui improvements, bugfixes
4 |
5 |
6 |
--------------------------------------------------------------------------------
/ios/fastlane/metadata/review_information/phone_number.txt:
--------------------------------------------------------------------------------
1 | +436805529332
2 |
--------------------------------------------------------------------------------
/ios/fastlane/metadata/secondary_category.txt:
--------------------------------------------------------------------------------
1 | FOOD_AND_DRINK
2 |
--------------------------------------------------------------------------------
/ios/fastlane/metadata/secondary_first_sub_category.txt:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/ios/fastlane/metadata/secondary_second_sub_category.txt:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/ios/fastlane/screenshots/de-DE/0_APP_IPHONE_55_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/fastlane/screenshots/de-DE/0_APP_IPHONE_55_0.png
--------------------------------------------------------------------------------
/ios/fastlane/screenshots/de-DE/0_APP_IPHONE_67_0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/fastlane/screenshots/de-DE/0_APP_IPHONE_67_0.jpg
--------------------------------------------------------------------------------
/ios/fastlane/screenshots/de-DE/1_APP_IPHONE_55_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/fastlane/screenshots/de-DE/1_APP_IPHONE_55_1.png
--------------------------------------------------------------------------------
/ios/fastlane/screenshots/de-DE/1_APP_IPHONE_67_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/fastlane/screenshots/de-DE/1_APP_IPHONE_67_1.jpg
--------------------------------------------------------------------------------
/ios/fastlane/screenshots/de-DE/2_APP_IPHONE_55_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/fastlane/screenshots/de-DE/2_APP_IPHONE_55_2.png
--------------------------------------------------------------------------------
/ios/fastlane/screenshots/de-DE/2_APP_IPHONE_67_2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/fastlane/screenshots/de-DE/2_APP_IPHONE_67_2.jpg
--------------------------------------------------------------------------------
/ios/fastlane/screenshots/de-DE/3_APP_IPHONE_55_3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/fastlane/screenshots/de-DE/3_APP_IPHONE_55_3.png
--------------------------------------------------------------------------------
/ios/fastlane/screenshots/de-DE/3_APP_IPHONE_67_3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/fastlane/screenshots/de-DE/3_APP_IPHONE_67_3.jpg
--------------------------------------------------------------------------------
/ios/fastlane/screenshots/de-DE/4_APP_IPHONE_55_4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/fastlane/screenshots/de-DE/4_APP_IPHONE_55_4.png
--------------------------------------------------------------------------------
/ios/fastlane/screenshots/de-DE/4_APP_IPHONE_67_4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/ios/fastlane/screenshots/de-DE/4_APP_IPHONE_67_4.jpg
--------------------------------------------------------------------------------
/l10n.yaml:
--------------------------------------------------------------------------------
1 | synthetic-package: false # see https://docs.flutter.dev/release/breaking-changes/flutter-generate-i10n-source
2 |
3 | arb-dir: lib/l10n
4 | output-dir: lib/l10n/generated
5 | template-arb-file: app_en.arb
6 | output-localization-file: app_localizations.dart
7 | nullable-getter: false
8 | preferred-supported-locales: [ en ]
--------------------------------------------------------------------------------
/lib/exceptions/no_result_exception.dart:
--------------------------------------------------------------------------------
1 | class NoResultException implements Exception {
2 | const NoResultException();
3 | }
4 |
--------------------------------------------------------------------------------
/lib/exceptions/no_such_entry_exception.dart:
--------------------------------------------------------------------------------
1 | class NoSuchEntryException implements Exception {
2 | const NoSuchEntryException();
3 |
4 | @override
5 | String toString() {
6 | return 'No such entry found';
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/lib/helpers/charts.dart:
--------------------------------------------------------------------------------
1 | import 'consts.dart';
2 |
3 | double chartGetInterval(DateTime first, DateTime last, {divider = 3}) {
4 | final dayDiff = last.difference(first);
5 |
6 | return dayDiff.inMilliseconds == 0
7 | ? CHART_MILLISECOND_FACTOR
8 | : dayDiff.inMilliseconds.abs() / divider;
9 | }
10 |
--------------------------------------------------------------------------------
/lib/l10n/README.md:
--------------------------------------------------------------------------------
1 | # Translations for the app
2 |
3 | These files are usually edited on weblate, and not directly in the repo:
4 |
5 |
6 |
7 | ## Maintenance
8 |
9 | Find keys that are not used in the code anymore:
10 |
11 | ```bash
12 | flutter pub add --dev translations_cleaner
13 | flutter pub run translations_cleaner list-unused-terms
14 | ```
15 |
16 | Remove unused keys from the arb files (this removes both `key` as well as `@key`):
17 |
18 | ```bash
19 | cd lib/l10n
20 | dart remove_keys.dart arbKey1 anotherArbKey
21 | ```
--------------------------------------------------------------------------------
/lib/models/README.txt:
--------------------------------------------------------------------------------
1 | flutter pub run build_runner build
2 |
3 | flutter pub run build_runner watch
--------------------------------------------------------------------------------
/lib/models/exercises/category.g.dart:
--------------------------------------------------------------------------------
1 | // GENERATED CODE - DO NOT MODIFY BY HAND
2 |
3 | part of 'category.dart';
4 |
5 | // **************************************************************************
6 | // JsonSerializableGenerator
7 | // **************************************************************************
8 |
9 | ExerciseCategory _$ExerciseCategoryFromJson(Map json) {
10 | $checkKeys(
11 | json,
12 | requiredKeys: const ['id', 'name'],
13 | );
14 | return ExerciseCategory(
15 | id: (json['id'] as num).toInt(),
16 | name: json['name'] as String,
17 | );
18 | }
19 |
20 | Map _$ExerciseCategoryToJson(ExerciseCategory instance) => {
21 | 'id': instance.id,
22 | 'name': instance.name,
23 | };
24 |
--------------------------------------------------------------------------------
/lib/models/exercises/equipment.g.dart:
--------------------------------------------------------------------------------
1 | // GENERATED CODE - DO NOT MODIFY BY HAND
2 |
3 | part of 'equipment.dart';
4 |
5 | // **************************************************************************
6 | // JsonSerializableGenerator
7 | // **************************************************************************
8 |
9 | Equipment _$EquipmentFromJson(Map json) {
10 | $checkKeys(
11 | json,
12 | requiredKeys: const ['id', 'name'],
13 | );
14 | return Equipment(
15 | id: (json['id'] as num).toInt(),
16 | name: json['name'] as String,
17 | );
18 | }
19 |
20 | Map _$EquipmentToJson(Equipment instance) => {
21 | 'id': instance.id,
22 | 'name': instance.name,
23 | };
24 |
--------------------------------------------------------------------------------
/lib/models/exercises/variation.g.dart:
--------------------------------------------------------------------------------
1 | // GENERATED CODE - DO NOT MODIFY BY HAND
2 |
3 | part of 'variation.dart';
4 |
5 | // **************************************************************************
6 | // JsonSerializableGenerator
7 | // **************************************************************************
8 |
9 | Variation _$VariationFromJson(Map json) {
10 | $checkKeys(
11 | json,
12 | requiredKeys: const ['id'],
13 | );
14 | return Variation(
15 | id: (json['id'] as num).toInt(),
16 | );
17 | }
18 |
19 | Map _$VariationToJson(Variation instance) => {
20 | 'id': instance.id,
21 | };
22 |
--------------------------------------------------------------------------------
/lib/models/nutrition/meal.g.dart:
--------------------------------------------------------------------------------
1 | // GENERATED CODE - DO NOT MODIFY BY HAND
2 |
3 | part of 'meal.dart';
4 |
5 | // **************************************************************************
6 | // JsonSerializableGenerator
7 | // **************************************************************************
8 |
9 | Meal _$MealFromJson(Map json) => Meal(
10 | id: (json['id'] as num?)?.toInt(),
11 | time: stringToTimeNull(json['time'] as String?),
12 | name: json['name'] as String?,
13 | )..planId = (json['plan'] as num).toInt();
14 |
15 | Map _$MealToJson(Meal instance) => {
16 | 'id': instance.id,
17 | 'plan': instance.planId,
18 | 'time': timeToString(instance.time),
19 | 'name': instance.name,
20 | };
21 |
--------------------------------------------------------------------------------
/lib/models/nutrition/weight_unit.g.dart:
--------------------------------------------------------------------------------
1 | // GENERATED CODE - DO NOT MODIFY BY HAND
2 |
3 | part of 'weight_unit.dart';
4 |
5 | // **************************************************************************
6 | // JsonSerializableGenerator
7 | // **************************************************************************
8 |
9 | WeightUnit _$WeightUnitFromJson(Map json) {
10 | $checkKeys(
11 | json,
12 | requiredKeys: const ['id', 'name'],
13 | );
14 | return WeightUnit(
15 | id: (json['id'] as num).toInt(),
16 | name: json['name'] as String,
17 | );
18 | }
19 |
20 | Map _$WeightUnitToJson(WeightUnit instance) => {
21 | 'id': instance.id,
22 | 'name': instance.name,
23 | };
24 |
--------------------------------------------------------------------------------
/lib/models/workouts/repetition_unit.g.dart:
--------------------------------------------------------------------------------
1 | // GENERATED CODE - DO NOT MODIFY BY HAND
2 |
3 | part of 'repetition_unit.dart';
4 |
5 | // **************************************************************************
6 | // JsonSerializableGenerator
7 | // **************************************************************************
8 |
9 | RepetitionUnit _$RepetitionUnitFromJson(Map json) {
10 | $checkKeys(
11 | json,
12 | requiredKeys: const ['id', 'name'],
13 | );
14 | return RepetitionUnit(
15 | id: (json['id'] as num).toInt(),
16 | name: json['name'] as String,
17 | );
18 | }
19 |
20 | Map _$RepetitionUnitToJson(RepetitionUnit instance) => {
21 | 'id': instance.id,
22 | 'name': instance.name,
23 | };
24 |
--------------------------------------------------------------------------------
/lib/models/workouts/weight_unit.g.dart:
--------------------------------------------------------------------------------
1 | // GENERATED CODE - DO NOT MODIFY BY HAND
2 |
3 | part of 'weight_unit.dart';
4 |
5 | // **************************************************************************
6 | // JsonSerializableGenerator
7 | // **************************************************************************
8 |
9 | WeightUnit _$WeightUnitFromJson(Map json) {
10 | $checkKeys(
11 | json,
12 | requiredKeys: const ['id', 'name'],
13 | );
14 | return WeightUnit(
15 | id: (json['id'] as num).toInt(),
16 | name: json['name'] as String,
17 | );
18 | }
19 |
20 | Map _$WeightUnitToJson(WeightUnit instance) => {
21 | 'id': instance.id,
22 | 'name': instance.name,
23 | };
24 |
--------------------------------------------------------------------------------
/lib/screens/configure_plates_screen.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 | import 'package:wger/l10n/generated/app_localizations.dart';
3 | import 'package:wger/widgets/routines/plate_calculator.dart';
4 |
5 | class ConfigurePlatesScreen extends StatelessWidget {
6 | static const routeName = '/ConfigureAvailablePlates';
7 |
8 | const ConfigurePlatesScreen({super.key});
9 |
10 | @override
11 | Widget build(BuildContext context) {
12 | final i18n = AppLocalizations.of(context);
13 |
14 | return Scaffold(
15 | appBar: AppBar(title: Text(i18n.selectAvailablePlates)),
16 | body: const ConfigureAvailablePlates(),
17 | );
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/linux/.gitignore:
--------------------------------------------------------------------------------
1 | flutter/ephemeral
2 |
--------------------------------------------------------------------------------
/linux/flutter/generated_plugin_registrant.h:
--------------------------------------------------------------------------------
1 | //
2 | // Generated file. Do not edit.
3 | //
4 |
5 | // clang-format off
6 |
7 | #ifndef GENERATED_PLUGIN_REGISTRANT_
8 | #define GENERATED_PLUGIN_REGISTRANT_
9 |
10 | #include
11 |
12 | // Registers Flutter plugins.
13 | void fl_register_plugins(FlPluginRegistry* registry);
14 |
15 | #endif // GENERATED_PLUGIN_REGISTRANT_
16 |
--------------------------------------------------------------------------------
/linux/main.cc:
--------------------------------------------------------------------------------
1 | #include "my_application.h"
2 |
3 | int main(int argc, char** argv) {
4 | g_autoptr(MyApplication) app = my_application_new();
5 | return g_application_run(G_APPLICATION(app), argc, argv);
6 | }
7 |
--------------------------------------------------------------------------------
/linux/my_application.h:
--------------------------------------------------------------------------------
1 | #ifndef FLUTTER_MY_APPLICATION_H_
2 | #define FLUTTER_MY_APPLICATION_H_
3 |
4 | #include
5 |
6 | G_DECLARE_FINAL_TYPE(MyApplication, my_application, MY, APPLICATION,
7 | GtkApplication)
8 |
9 | /**
10 | * my_application_new:
11 | *
12 | * Creates a new Flutter-based application.
13 | *
14 | * Returns: a new #MyApplication.
15 | */
16 | MyApplication* my_application_new();
17 |
18 | #endif // FLUTTER_MY_APPLICATION_H_
19 |
--------------------------------------------------------------------------------
/macos/.gitignore:
--------------------------------------------------------------------------------
1 | # Flutter-related
2 | **/Flutter/ephemeral/
3 | **/Pods/
4 |
5 | # Xcode-related
6 | **/dgph
7 | **/xcuserdata/
8 |
--------------------------------------------------------------------------------
/macos/Flutter/Flutter-Debug.xcconfig:
--------------------------------------------------------------------------------
1 | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
2 | #include "ephemeral/Flutter-Generated.xcconfig"
3 |
--------------------------------------------------------------------------------
/macos/Flutter/Flutter-Release.xcconfig:
--------------------------------------------------------------------------------
1 | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
2 | #include "ephemeral/Flutter-Generated.xcconfig"
3 |
--------------------------------------------------------------------------------
/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/macos/Runner.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/macos/Runner/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | import Cocoa
2 | import FlutterMacOS
3 |
4 | @main
5 | class AppDelegate: FlutterAppDelegate {
6 | override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
7 | return true
8 | }
9 |
10 | override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool {
11 | return true
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png
--------------------------------------------------------------------------------
/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png
--------------------------------------------------------------------------------
/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png
--------------------------------------------------------------------------------
/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png
--------------------------------------------------------------------------------
/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png
--------------------------------------------------------------------------------
/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png
--------------------------------------------------------------------------------
/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png
--------------------------------------------------------------------------------
/macos/Runner/Configs/AppInfo.xcconfig:
--------------------------------------------------------------------------------
1 | // Application-level settings for the Runner target.
2 | //
3 | // This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the
4 | // future. If not, the values below would default to using the project name when this becomes a
5 | // 'flutter create' template.
6 |
7 | // The application's name. By default this is also the title of the Flutter window.
8 | PRODUCT_NAME = wger
9 |
10 | // The application's bundle identifier
11 | PRODUCT_BUNDLE_IDENTIFIER = de.wger.flutter
12 |
13 | // The copyright displayed in application information
14 | PRODUCT_COPYRIGHT = Copyright © 2023 de.wger. All rights reserved.
15 |
--------------------------------------------------------------------------------
/macos/Runner/Configs/Debug.xcconfig:
--------------------------------------------------------------------------------
1 | #include "../../Flutter/Flutter-Debug.xcconfig"
2 | #include "Warnings.xcconfig"
3 |
--------------------------------------------------------------------------------
/macos/Runner/Configs/Release.xcconfig:
--------------------------------------------------------------------------------
1 | #include "../../Flutter/Flutter-Release.xcconfig"
2 | #include "Warnings.xcconfig"
3 |
--------------------------------------------------------------------------------
/macos/Runner/Configs/Warnings.xcconfig:
--------------------------------------------------------------------------------
1 | WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings
2 | GCC_WARN_UNDECLARED_SELECTOR = YES
3 | CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES
4 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE
5 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
6 | CLANG_WARN_PRAGMA_PACK = YES
7 | CLANG_WARN_STRICT_PROTOTYPES = YES
8 | CLANG_WARN_COMMA = YES
9 | GCC_WARN_STRICT_SELECTOR_MATCH = YES
10 | CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES
11 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES
12 | GCC_WARN_SHADOW = YES
13 | CLANG_WARN_UNREACHABLE_CODE = YES
14 |
--------------------------------------------------------------------------------
/macos/Runner/DebugProfile.entitlements:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | com.apple.security.app-sandbox
6 |
7 | com.apple.security.cs.allow-jit
8 |
9 | com.apple.security.network.server
10 |
11 | com.apple.security.network.client
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/macos/Runner/MainFlutterWindow.swift:
--------------------------------------------------------------------------------
1 | import Cocoa
2 | import FlutterMacOS
3 |
4 | class MainFlutterWindow: NSWindow {
5 | override func awakeFromNib() {
6 | let flutterViewController = FlutterViewController.init()
7 | let windowFrame = self.frame
8 | self.contentViewController = flutterViewController
9 | self.setFrame(windowFrame, display: true)
10 |
11 | RegisterGeneratedPlugins(registry: flutterViewController)
12 |
13 | super.awakeFromNib()
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/macos/Runner/Release.entitlements:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | com.apple.security.app-sandbox
6 |
7 | com.apple.security.network.client
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/test/fixtures/exercises/category_entries.json:
--------------------------------------------------------------------------------
1 | {
2 | "count": 2,
3 | "next": null,
4 | "previous": null,
5 | "results": [
6 | {
7 | "id": 1,
8 | "name": "Arms"
9 | },
10 | {
11 | "id": 2,
12 | "name": "Legs"
13 | }
14 | ]
15 | }
--------------------------------------------------------------------------------
/test/fixtures/exercises/equipment_entries.json:
--------------------------------------------------------------------------------
1 | {
2 | "count": 4,
3 | "next": null,
4 | "previous": null,
5 | "results": [
6 | {
7 | "id": 1,
8 | "name": "Bench"
9 | },
10 | {
11 | "id": 2,
12 | "name": "Dumbbell"
13 | },
14 | {
15 | "id": 3,
16 | "name": "Bench"
17 | },
18 | {
19 | "id": 10,
20 | "name": "Gym mat"
21 | }
22 | ]
23 | }
--------------------------------------------------------------------------------
/test/fixtures/exercises/language_entries.json:
--------------------------------------------------------------------------------
1 | {
2 | "count": 5,
3 | "next": null,
4 | "previous": null,
5 | "results": [
6 | {
7 | "id": 1,
8 | "short_name": "de",
9 | "full_name": "Deutsch"
10 | },
11 | {
12 | "id": 2,
13 | "short_name": "en",
14 | "full_name": "English"
15 | },
16 | {
17 | "id": 12,
18 | "short_name": "es",
19 | "full_name": "Español"
20 | },
21 | {
22 | "id": 3,
23 | "short_name": "fr",
24 | "full_name": "Français"
25 | },
26 | {
27 | "id": 13,
28 | "short_name": "it",
29 | "full_name": "Italiano"
30 | }
31 | ]
32 | }
--------------------------------------------------------------------------------
/test/fixtures/fixture_reader.dart:
--------------------------------------------------------------------------------
1 | import 'dart:io';
2 |
3 | String fixture(String name) => File('test/fixtures/$name').readAsStringSync();
4 |
--------------------------------------------------------------------------------
/test/fixtures/measurement/measurement_categories.json:
--------------------------------------------------------------------------------
1 | {
2 | "count": 2,
3 | "next": null,
4 | "previous": null,
5 | "results": [
6 | {
7 | "id": 1,
8 | "name": "Strength",
9 | "unit": "kN"
10 | },
11 | {
12 | "id": 2,
13 | "name": "Biceps",
14 | "unit": "cm"
15 | }
16 | ]
17 | }
--------------------------------------------------------------------------------
/test/fixtures/measurement/measurement_category.json:
--------------------------------------------------------------------------------
1 | {
2 | "id": 1,
3 | "name": "Strength",
4 | "unit": "kN"
5 | }
--------------------------------------------------------------------------------
/test/fixtures/measurement/measurement_category_edited.json:
--------------------------------------------------------------------------------
1 | {
2 | "id": 1,
3 | "name": "Triceps",
4 | "unit": "m"
5 | }
--------------------------------------------------------------------------------
/test/fixtures/measurement/measurement_category_edited_to_json.json:
--------------------------------------------------------------------------------
1 | {
2 | "id": 1,
3 | "name": "Triceps",
4 | "unit": "m",
5 | "entries": null
6 | }
--------------------------------------------------------------------------------
/test/fixtures/measurement/measurement_category_entries.json:
--------------------------------------------------------------------------------
1 | {
2 | "count": 6,
3 | "next": null,
4 | "previous": null,
5 | "results": [
6 | {
7 | "id": 1,
8 | "category": 1,
9 | "date": "2021-07-21",
10 | "value": 10,
11 | "notes": "Some important notes"
12 | },
13 | {
14 | "id": 2,
15 | "category": 1,
16 | "date": "2021-07-10",
17 | "value": 15.00,
18 | "notes": ""
19 | }
20 | ]
21 | }
--------------------------------------------------------------------------------
/test/fixtures/measurement/measurement_category_without_id_to_json.json:
--------------------------------------------------------------------------------
1 | {
2 | "id": null,
3 | "name": "Strength",
4 | "unit": "kN",
5 | "entries": null
6 | }
--------------------------------------------------------------------------------
/test/fixtures/measurement/measurement_entry.json:
--------------------------------------------------------------------------------
1 | {
2 | "id": 3,
3 | "category": 1,
4 | "date": "2021-07-09",
5 | "value": 15.00,
6 | "notes": ""
7 | }
--------------------------------------------------------------------------------
/test/fixtures/measurement/measurement_entry_edited.json:
--------------------------------------------------------------------------------
1 | {
2 | "id": 1,
3 | "category": 1,
4 | "date": "2021-07-21",
5 | "value": 23,
6 | "notes": "I just wanted to edit this to see what happens"
7 | }
--------------------------------------------------------------------------------
/test/fixtures/measurement/measurement_entry_without_id.json:
--------------------------------------------------------------------------------
1 | {
2 | "id": null,
3 | "category": 1,
4 | "date": "2021-07-09",
5 | "value": 15.00,
6 | "notes": ""
7 | }
--------------------------------------------------------------------------------
/test/fixtures/measurement/measurement_entry_wrong_category.json:
--------------------------------------------------------------------------------
1 | {
2 | "id": 3,
3 | "category": 83,
4 | "date": "2021-07-09",
5 | "value": 15.00,
6 | "notes": ""
7 | }
--------------------------------------------------------------------------------
/test/fixtures/nutrition/ingredient_suggestions.json:
--------------------------------------------------------------------------------
1 | {"suggestions":[
2 | {
3 | "value": "'n Dry 100% Rapeseed Oil 1 Litre",
4 | "data": {
5 | "id": 61810,
6 | "name": "'n Dry 100% Rapeseed Oil 1 Litre"
7 | }},
8 | {
9 | "value": "100% Apple & Mango",
10 | "data": {
11 | "id": 61972,
12 | "name": "100% Apple & Mango"
13 | }
14 | }]
15 | }
16 |
--------------------------------------------------------------------------------
/test/fixtures/nutrition/ingredientinfo_wrong_code.json:
--------------------------------------------------------------------------------
1 | {
2 | "count":0,
3 | "next":null,
4 | "previous":null,
5 | "results":[]
6 | }
--------------------------------------------------------------------------------
/test/fixtures/nutrition/nutritional_plan_detail_response.json:
--------------------------------------------------------------------------------
1 | {
2 | "id": 1,
3 | "creation_date": "2022-08-09",
4 | "description": "",
5 | "only_logging": false,
6 | "goal_energy": null,
7 | "goal_protein": null,
8 | "goal_carbohydrates": null,
9 | "goal_fat": null,
10 | "goal_fiber": null,
11 | "language": 1
12 | }
--------------------------------------------------------------------------------
/test/fixtures/pagination/pagination1.json:
--------------------------------------------------------------------------------
1 | {
2 | "count": 2,
3 | "next": "https://localhost/api/v2/itcrowd/?limit=20&offset=20",
4 | "previous": null,
5 | "results": [
6 | {
7 | "id": 1,
8 | "value": "You wouldn't steal a handbag."
9 | },
10 | {
11 | "id": 2,
12 | "value": "You wouldn't steal a car."
13 | }
14 | ]
15 | }
--------------------------------------------------------------------------------
/test/fixtures/pagination/pagination2.json:
--------------------------------------------------------------------------------
1 | {
2 | "count": 2,
3 | "next": "https://localhost/api/v2/itcrowd/?limit=20&offset=40",
4 | "previous": "https://localhost/api/v2/itcrowd/?limit=20",
5 | "results": [
6 | {
7 | "id": 3,
8 | "value": "You wouldn't steal a baby."
9 | },
10 | {
11 | "id": 4,
12 | "value": "You wouldn't shoot a policeman."
13 | }
14 | ]
15 | }
--------------------------------------------------------------------------------
/test/fixtures/pagination/pagination3.json:
--------------------------------------------------------------------------------
1 | {
2 | "count": 1,
3 | "next": null,
4 | "previous": "https://localhost/api/v2/itcrowd/?limit=20&offset=40",
5 | "results": [
6 | {
7 | "id": 5,
8 | "value": "And then steal his helmet."
9 | }
10 | ]
11 | }
--------------------------------------------------------------------------------
/test/fixtures/routines/repetition_units.json:
--------------------------------------------------------------------------------
1 | {
2 | "count": 7,
3 | "next": null,
4 | "previous": null,
5 | "results": [
6 | {
7 | "id": 6,
8 | "name": "Kilometers"
9 | },
10 | {
11 | "id": 7,
12 | "name": "MaxReps"
13 | },
14 | {
15 | "id": 5,
16 | "name": "Miles"
17 | },
18 | {
19 | "id": 4,
20 | "name": "Minutes"
21 | },
22 | {
23 | "id": 1,
24 | "name": "Repetitions"
25 | },
26 | {
27 | "id": 3,
28 | "name": "Seconds"
29 | },
30 | {
31 | "id": 2,
32 | "name": "UntilFailure"
33 | }
34 | ]
35 | }
--------------------------------------------------------------------------------
/test/fixtures/routines/weight_units.json:
--------------------------------------------------------------------------------
1 | {
2 | "count": 6,
3 | "next": null,
4 | "previous": null,
5 | "results": [
6 | {
7 | "id": 3,
8 | "name": "BodyWeight"
9 | },
10 | {
11 | "id": 1,
12 | "name": "kg"
13 | },
14 | {
15 | "id": 5,
16 | "name": "KilometersPerHour"
17 | },
18 | {
19 | "id": 2,
20 | "name": "lb"
21 | },
22 | {
23 | "id": 6,
24 | "name": "MilesPerHour"
25 | },
26 | {
27 | "id": 4,
28 | "name": "Plates"
29 | }
30 | ]
31 | }
--------------------------------------------------------------------------------
/test/nutrition/goldens/nutritional_plan_1_default_view.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/test/nutrition/goldens/nutritional_plan_1_default_view.png
--------------------------------------------------------------------------------
/test/nutrition/goldens/nutritional_plan_2_one_meal_with_ingredients.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/test/nutrition/goldens/nutritional_plan_2_one_meal_with_ingredients.png
--------------------------------------------------------------------------------
/test/nutrition/goldens/nutritional_plan_3_both_meals_with_ingredients.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/test/nutrition/goldens/nutritional_plan_3_both_meals_with_ingredients.png
--------------------------------------------------------------------------------
/test/routine/goldens/routine_logs_screen_detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/test/routine/goldens/routine_logs_screen_detail.png
--------------------------------------------------------------------------------
/test/routine/goldens/routine_screen_detail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/test/routine/goldens/routine_screen_detail.png
--------------------------------------------------------------------------------
/test_data/profile.dart:
--------------------------------------------------------------------------------
1 | import 'package:wger/models/user/profile.dart';
2 |
3 | final tProfile1 = Profile(
4 | username: 'super root',
5 | emailVerified: true,
6 | isTrustworthy: true,
7 | email: 'admin@google.com',
8 | weightUnitStr: 'kg',
9 | );
10 |
--------------------------------------------------------------------------------
/test_driver/screenshot_driver.dart:
--------------------------------------------------------------------------------
1 | import 'dart:io';
2 |
3 | import 'package:integration_test/integration_test_driver_extended.dart';
4 |
5 | // cf. https://dev.to/mjablecnik/take-screenshot-during-flutter-integration-tests-435k
6 | Future main() async {
7 | try {
8 | await integrationDriver(
9 | onScreenshot: (String screenshotName, List screenshotBytes, [_]) async {
10 | final File image = await File(screenshotName).create(recursive: true);
11 | image.writeAsBytesSync(screenshotBytes);
12 | return true;
13 | },
14 | );
15 | } catch (e) {
16 | print('An error occurred: $e');
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/web/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/web/favicon.png
--------------------------------------------------------------------------------
/web/icons/Icon-192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/web/icons/Icon-192.png
--------------------------------------------------------------------------------
/web/icons/Icon-512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/web/icons/Icon-512.png
--------------------------------------------------------------------------------
/web/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "wger",
3 | "short_name": "wger",
4 | "start_url": ".",
5 | "display": "standalone",
6 | "background_color": "#0175C2",
7 | "theme_color": "#0175C2",
8 | "description": "A new Flutter project.",
9 | "orientation": "portrait-primary",
10 | "prefer_related_applications": false,
11 | "icons": [
12 | {
13 | "src": "icons/Icon-192.png",
14 | "sizes": "192x192",
15 | "type": "image/png"
16 | },
17 | {
18 | "src": "icons/Icon-512.png",
19 | "sizes": "512x512",
20 | "type": "image/png"
21 | }
22 | ]
23 | }
24 |
--------------------------------------------------------------------------------
/windows/.gitignore:
--------------------------------------------------------------------------------
1 | flutter/ephemeral/
2 |
3 | # Visual Studio user-specific files.
4 | *.suo
5 | *.user
6 | *.userosscache
7 | *.sln.docstates
8 |
9 | # Visual Studio build-related files.
10 | x64/
11 | x86/
12 |
13 | # Visual Studio cache files
14 | # files ending in .cache can be ignored
15 | *.[Cc]ache
16 | # but keep track of directories ending in .cache
17 | !*.[Cc]ache/
18 |
--------------------------------------------------------------------------------
/windows/flutter/generated_plugin_registrant.h:
--------------------------------------------------------------------------------
1 | //
2 | // Generated file. Do not edit.
3 | //
4 |
5 | // clang-format off
6 |
7 | #ifndef GENERATED_PLUGIN_REGISTRANT_
8 | #define GENERATED_PLUGIN_REGISTRANT_
9 |
10 | #include
11 |
12 | // Registers Flutter plugins.
13 | void RegisterPlugins(flutter::PluginRegistry* registry);
14 |
15 | #endif // GENERATED_PLUGIN_REGISTRANT_
16 |
--------------------------------------------------------------------------------
/windows/runner/resource.h:
--------------------------------------------------------------------------------
1 | //{{NO_DEPENDENCIES}}
2 | // Microsoft Visual C++ generated include file.
3 | // Used by Runner.rc
4 | //
5 | #define IDI_APP_ICON 101
6 |
7 | // Next default values for new objects
8 | //
9 | #ifdef APSTUDIO_INVOKED
10 | #ifndef APSTUDIO_READONLY_SYMBOLS
11 | #define _APS_NEXT_RESOURCE_VALUE 102
12 | #define _APS_NEXT_COMMAND_VALUE 40001
13 | #define _APS_NEXT_CONTROL_VALUE 1001
14 | #define _APS_NEXT_SYMED_VALUE 101
15 | #endif
16 | #endif
17 |
--------------------------------------------------------------------------------
/windows/runner/resources/app_icon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/wger-project/flutter/f85104ac1ad73be2100d4409ef08f7fd0cc3a4ce/windows/runner/resources/app_icon.ico
--------------------------------------------------------------------------------
/windows/runner/utils.h:
--------------------------------------------------------------------------------
1 | #ifndef RUNNER_UTILS_H_
2 | #define RUNNER_UTILS_H_
3 |
4 | #include
5 | #include
6 |
7 | // Creates a console for the process, and redirects stdout and stderr to
8 | // it for both the runner and the Flutter library.
9 | void CreateAndAttachConsole();
10 |
11 | // Takes a null-terminated wchar_t* encoded in UTF-16 and returns a std::string
12 | // encoded in UTF-8. Returns an empty std::string on failure.
13 | std::string Utf8FromUtf16(const wchar_t* utf16_string);
14 |
15 | // Gets the command line arguments passed in as a std::vector,
16 | // encoded in UTF-8. Returns an empty std::vector on failure.
17 | std::vector GetCommandLineArguments();
18 |
19 | #endif // RUNNER_UTILS_H_
20 |
--------------------------------------------------------------------------------