'package:splashscreen/splashscreen.dart' 是遗留的,不应导入到空安全库中

'package:splashscreen/splashscreen.dart' is legacy, and should not be imported into a null safe library

即使我添加了最新的依赖项,即“splashscreen: ^1.3.5”,如何解决启动画面中空安全库的错误

要导入没有空安全支持的包,请降低 pubspec.yaml

中的 flutter 版本

用下面的版本替换environment

  environment:
    sdk: ">=2.06.0 <3.0.0"

注意:这是一种在没有空安全支持的情况下使用外部包的方法。如果它是一个现有项目,请在迁移之前检查您的依赖项是否支持空安全。