すらぼうの開発ノート

モバイルアプリエンジニアのメモ

2023-11-01から1ヶ月間の記事一覧

【Flutter】The imported package '***' isn't a dependency of the importing package. Try adding a dependency for '***' in the 'pubspec.yaml' がでたら見直す点

flutterにて開発を行っていた際、次のようなワーニングが表示された。 The imported package 'パッケージ名' isn't a dependency of the importing package. Try adding a dependency for 'パッケージ名' in the 'pubspec.yaml' 以下のリントツールのルール…

【Flutter】Run / Debug / Profile の違い

Flutterではコードを実行する際にモードが3つ用意されている。 Release Debug Profile それぞれ次のような用途で用いる。 Release 以下のコマンドで実行する。 flutter run --release 特徴は以下。 リリース準備をする際に用いる assert()は無効 実行速度が…