Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Crazywater/knuffiworkout
Workout app written using Flutter and Firebase
https://github.com/Crazywater/knuffiworkout
Last synced: 3 months ago
JSON representation
Workout app written using Flutter and Firebase
- Host: GitHub
- URL: https://github.com/Crazywater/knuffiworkout
- Owner: Crazywater
- License: mit
- Created: 2018-05-10T13:53:49.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-10-30T14:12:45.000Z (about 2 years ago)
- Last Synced: 2024-07-15T13:53:16.000Z (4 months ago)
- Language: Dart
- Size: 2.03 MB
- Stars: 51
- Watchers: 4
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-flutter - Workout App with Flutter & Firebase
README
# Knuffiworkout
A workout app for Android written in Flutter and Firebase.
[Download on the Play store](https://play.google.com/store/apps/details?id=de.fmutzel.knuffiworkout)
## Getting Started
1. Set up [Flutter](http://flutter.io) with the editor of your choice.
1. Create a [Firebase](http://firebase.google.com) account
1. Set up a Firebase project for knuffiworkout.
Instructions for creating a Firebase project in Flutter can be found in the [Codelab](https://codelabs.developers.google.com/codelabs/flutter-firebase/#4).
Make sure to follow through steps 5 and 6:
1. The Android package name should match `AndroidManifest.xml` (per default de.fmutzel.knuffiworkout)
1. Add SHA fingerprints for your projects as described in [Authenticating your Client](https://developers.google.com/android/guides/client-auth).
1. Download `google-services.json` from the Firebase console and place it in android/app.
1. Configure your Firebase project to allow sign-in with Google in the Authentication tab.
1. Create a Firebase database and set up rules to allow read/write access for each user's data:
```
{
"rules": {
"user": {
"$uid": {
".read": "$uid === auth.uid",
".write": "$uid === auth.uid"
}
}
}
}
```
1. Run the project using `flutter run` or open it in your IDE.## Contributing
Pull requests welcome! :)
I don't have an iOS device (nor do I have an Apple developer account or a Mac with XCode),
so the iOS code is just the default from the Flutter framework.### Regenerating built_value files
The built_value `.g.dart` files can be regenerated from the corresponding `.dart` files using
```
flutter packages pub run build_runner build --delete-conflicting-outputs
```### Building a release build
For signing release builds, you need a keystore and some additional information in `android/key.properties`.Instructions can be found on the [Flutter homepage](https://flutter.io/android-release/) under "Signing the app".
## Feature wishlist
* Presets for other popular workouts (5x5, Starting Strength, ...)