我正在使用截图: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,我目前正在开发一个生产应用程序,所以我不能更改为主通道。
1条答案
按热度按时间x8diyxa71#
我用最新版本升级了我的Flutter SDK。
在终端中运行
flutter upgrade --force
而且我还换了 Package
屏幕截图:2.0.0
与
屏幕截图:2.1.0
在pubspec.yaml文件中。这对我很有效