flutter 使用Screenshot 2.0.0生成项目时出现错误“未定义名称视图”和“没有名称为视图的命名参数”

pexxcrt2  于 2023-05-29  发布在  Flutter
关注(0)|答案(1)|浏览(195)

我正在使用截图:2.0.0,当我尝试构建项目时,我得到了这个错误。

: Error: Undefined name 'View'.
screenshot.dart:154
        context == null ? fallBackView : View.maybeOf(context) ?? fallBackView;
                                         ^^^^
: Error: No named parameter with the name 'view'.
screenshot.dart:164
      view: view,
      ^^^^
: Context: Found this candidate, but the arguments don't match.
view.dart:68
  RenderView({
  ^^^^^^^^^^

我试图升级到screenshot:2.1.0,但它只适用于Flutter SDK >= 3.10.0,我目前正在开发一个生产应用程序,所以我不能更改为主通道。

x8diyxa7

x8diyxa71#

我用最新版本升级了我的Flutter SDK。
在终端中运行flutter upgrade --force
而且我还换了 Package
屏幕截图:2.0.0

屏幕截图:2.1.0
在pubspec.yaml文件中。这对我很有效

相关问题