我遵循了“启用空安全性”dart.dev
并将我的整个 Flutter 应用程序迁移到空安全性。
现在,我正在尝试使用flutter run
. 但是,由于以下错误,它不会启动:
Error: Cannot run with sound null safety, because the following dependencies
don't support null safety:
- package:cloud_firestore_web
- package:firebase_core_web
- package:shared_preferences
- package:url_launcher_web
- package:firebase_auth
- package:http
- package:provider
...
For solutions, see https://dart.dev/go/unsound-null-safety
Failed to compile application.
URL 上的指南说我应该“在迁移包之前等待依赖项迁移”,但我现在想使用默认情况下不可为空(NNBD)。
我怎样才能做到这一点?