2026-02-07 10:45:25 +00:00
|
|
|
# Tools available
|
|
|
|
|
- This is a flutter app.
|
|
|
|
|
- Flutter and Dart are not installed locally. They are executed via a flutter wrapper script, like gradlew (gradle wrapper) for gradle.
|
|
|
|
|
- Flutter and Dart are installed in a podman container. This container is invoked via `./flutterw` bash script.
|
|
|
|
|
- `./flutterw --build-container` to build the image and the container with flutter tools
|
|
|
|
|
- `./flutterw --exec <args>` to execute bash commands inside the container
|
|
|
|
|
- `./flutterw <args>` is a shorthand for `./flutter --exec flutter <args>`, so `./flutterw` and `flutter` are somewhat equivalent.
|
|
|
|
|
- Examples:
|
|
|
|
|
- `flutter pub get` --> `./flutterw pub get`
|
|
|
|
|
- `flutter run -d linux` --> `./flutterw run -d linux`
|
2026-02-09 15:28:30 +00:00
|
|
|
- See `./Makefile` for more examples.
|
2025-08-21 14:47:21 +00:00
|
|
|
|
|
|
|
|
|