Movnå is an open-source training application.
This project uses fvm, be sure to have it installed on your computer.
All calls to flutter
in the following shell snippets are actually calls to fvm flutter
.
You will probably want to update your IDE's path to the flutter sdk accordingly.
On Android Studio, go to Languages & Frameworks > Flutter
, and set it to :
/absolute/path/to/this/project/.fvm/flutter_sdk
On XCode, go to Build phases
, and inside Run script
add the following line :
export FLUTTER_ROOT="$PROJECT_DIR/../.fvm/flutter_sdk"
On VSCode, add this to your .vscode/settings.json
:
{
"dart.flutterSdkPath": ".fvm/flutter_sdk",
"search.exclude": {
"**/.fvm": true
},
"files.watcherExclude": {
"**/.fvm": true
}
}
To install all dependencies, run :
flutter pub get
This project uses generated files, to generate these run :
flutter pub run build_runner build