https://github.com/eee-c/dart-comics
上記のWebアプリを動かそうと、DartのSDKをインストールしました。環境はDebianです。そして、フォルダ/dart-comics-your_first_dart_appに移行して"pub install"をすると以下のように出力されました。
Terminal
1pub install 2pubspec.yaml has no lower-bound SDK constraint. 3You should edit pubspec.yaml to contain an SDK constraint: 4 5environment: 6 sdk: '>=2.10.0 <3.0.0' 7 8See https://dart.dev/go/sdk-constraint
そしてその後に、pubspec.yamlの中身を以下のように変更したら次のようなエラーが出ました。どのようにすれば実行できますか?
pubspec.yaml
1name: Dart Comics 2dependencies: 3 dirty: any 4 uuid: any 5 json: any 6 7environment: 8 sdk: '>=2.10.0 <3.0.0'
Terminal
1pub install 2Error on line 1, column 7 of pubspec.yaml: "name" field must be a valid Dart identifier. 3 ╷ 41 │ name: Dart Comics 5 │ ^^^^^^^^^^^ 6 ╵
あなたの回答
tips
プレビュー