进入 运行 flutter web 我有问题'预期类型 'SkDeletable' 的值,但得到类型 'Null' 之一'任何解决方案?
into run flutter web i have issue ' Expected a value of type 'SkDeletable', but got one of type 'Null'' any solutions?
我的代码只有 UI,我使用以下包:
提供商:^5.0.0
气泡:^1.2.1
image_picker: ^0.7.4
image_cropper: ^1.4.0
最佳答案
https://github.com/flutter/flutter/issues/77258
“ImageFilter 或其他任何东西的内存管理出了点问题。它试图对 null 进行垃圾回收。这个问题只发生在 --debug 模式下,还是也发生在 --release 和 --profile 中?”
所以 运行 网络进入发布模式
flutter 运行 -d chrome --debug
flutter 运行 -d chrome --profile
flutter 运行 -d chrome --release
我的代码只有 UI,我使用以下包:
提供商:^5.0.0
气泡:^1.2.1
image_picker: ^0.7.4
image_cropper: ^1.4.0
最佳答案
https://github.com/flutter/flutter/issues/77258
“ImageFilter 或其他任何东西的内存管理出了点问题。它试图对 null 进行垃圾回收。这个问题只发生在 --debug 模式下,还是也发生在 --release 和 --profile 中?”
所以 运行 网络进入发布模式
flutter 运行 -d chrome --debug
flutter 运行 -d chrome --profile
flutter 运行 -d chrome --release