Nhật Long
Nhật Long
**Crash app IOS when call function translateText(...)** **File pubspec.yaml** ``` environment: sdk: ">=3.0.0 =3.7.0" dependencies: flutter: sdk: flutter camera: any google_mlkit_commons: ^0.6.1 google_mlkit_text_recognition: ^0.11.0 google_mlkit_translation: ^0.9.0 dev_dependencies: flutter_lints: ^3.0.1 flutter_test:...
Support run script in DevOps Pipelines ```bash - script: | set -e curl -sL https://raw.githubusercontent.com/subosito/flutter-action/v2.16.0/setup.sh -o $RUNNER_TEMP/setup.sh source $RUNNER_TEMP/setup.sh -f pubspec.yaml echo "##vso[task.setvariable variable=FLUTTER_ROOT]$CACHE_PATH" echo "##vso[task.setvariable variable=PUB_CACHE]$PUB_CACHE" echo "##vso[task.prependpath] $CACHE_PATH/bin"...
fix: Full Screen in Landscape mode cut the video #621
When I run the package with the `example` directory Terminal log error ``` Deprecated. Use `dart run` instead. [INFO] Generating build script completed, took 473ms [INFO] Reading cached asset graph...
I want to add handle token after register `AuthPackageModule` ```dart @InjectableInit.microPackage() void initMicroPackage() { GetIt.I.get().interceptors.add(AuthInterceptor()); // ... Some logic handle init module package } ```