简体   繁体   English

如何在 flutter web 中使用 image_cropper?

[英]How to use image_cropper in flutter web?

It's said in the description of the package that is supports web.支持 web 的 package 的描述中说。 But since it's not possible to get path of the file in flutter web I can't to use it.但是由于无法在 flutter web 中获取文件的路径,因此我无法使用它。 Because the only way to work with this package is to provide path of the image因为使用此 package 的唯一方法是提供图像的路径

I looked at the example and you have to use Image.network instead of Image.file on web.我查看了示例,您必须在 web 上使用 Image.network 而不是 Image.file。

Then you can pass in the url to the image like this:然后您可以将 url 传递给图像,如下所示:

Image.network(
   url,
);

if you what to crop image than check out crop_image package如果您要裁剪图像而不是查看crop_image package

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM