Flutter 「”xxxxx” is not a valid Dart package name」の対処法

Flutter 「”xxxxx” is not a valid Dart package name」の対処法

「Flutter create」実行に、「xxxxx” is not a valid Dart package name」が発生した場合の対処法を記述してます。

環境

  • OS  windows11 pro 64bit
  • Flutter 3.3.1

エラー全文

以下のコマンドを、実行時に発生。

> flutter create flutterSample

"flutterSample" is not a valid Dart package name.

See https://dart.dev/tools/pub/pubspec#name for more information.

原因

「Dart」の「package」の命名規則に従っていないため

対処法

以下の命名規則に従う

  • 数字と小文字のアルファベットとアンダースコアのみ
  • 初めの一文字は数字以外
  • 予約語以外

これでエラーは改善されます。

> flutter create flutter_sample

Creating project C:\flutter_sample...
Running "flutter pub get" in flutter_sample...                   1,610ms
Wrote 127 files.

All done!
In order to run your application, type:

  $ cd C:\flutter_sample
  $ flutter run

Your application code is in C:\flutter_sample\lib\main.dart