My Quran Hatim Aplication.
- Dart sdk: ">=3.4.0 <4.0.0"
- Flutter: "3.22.2"
- Android: minSdkVersion 19
- iOS: --ios-language swift, Xcode version >= 15.0.0
Melos splitting up large code bases into separate independently versioned packages is extremely useful for code sharing. However, making changes across many repositories is messy and difficult to track, and testing across repositories gets complicated really fast. To solve these (and many other) problems, some projects will organize their code bases into multi-package repositories (sometimes called monorepos).
- Install melos
dart pub global activate melos
Setup
melos bootstrap
- If you have an AVD or real device attached, you can do
melos run-app
- run all tests from the command line:
melos test
- run integration tests in
test_driver
directory:
melos integration-test
dartfmt
lacks config file support, which implies that customizations need to be done by users individually. The default
limit of 80 characters line length conflicts with the deeply nested structure of flutter's declarative code for designing
widgets. This causes many unwanted linebreaks that reduce the readability of flutter code. Hence, we increase the line
length of the code to 120.
- Settings > Dart > Line length 120.
- Autoformat on save: Settings > Languages and Frameworks > then tick:
Format code on save
,Organize imports on save
. - Format the whole codebase with:
melos format-all
- Re generate .g files run:
melos run-build-runner-all
./scripts/pod_install.sh