CATEGORY

エラー・警告

  • 2022年3月21日
  • 2023年11月18日

The minCompileSdk (31) specified in a dependency’s AAR metadata からのエラー3コンボ

2021年11月から更新してなかったFlutterのプロジェクトを2022年3月にAndroidで実行しようとすると、エラーが連続で発生した。せっかくなので、記録を残します。 【2023/11/18追記】Flutter 3.16.0 でも動作確認。動画を追加。 環境 2022/03/21に実施。 >flutter doctor Doctor summary (to see all detai […]

  • 2022年3月8日
  • 2022年3月8日

【解決】Use a function declaration to bind a function to a name という警告

問題点 Flutterにて、「Use a function declaration to bind a function to a name」という警告が出ました。 ソース ラムダ式で書いていたFunctionを、中括弧形式にしたら、警告が消えた。 発生中 Status Function(String? value) _convertStatus = (String? value) => S […]