从Flutter中的文件加载图像

时间:2019-03-22 17:21:42

标签: ios file url flutter uri

我尝试通过提供由绝对URL字符串制成的File对象来使用Image.file(),该URL对象是我从iOS上的UIImagePickerController获得的。这是我的代码

//this line gets the absolute string from the URL of the file selected by user
var urlString = await platformChannel.invokeMethod("letUserPickImage")

//create File
File imageFile = File(urlString)

//create Image from File
Image.file(
    imageFile,
    height: 50,
    weight: 50,
    fit: BoxFit.contain,
),

但是,尽管文件存在,但应用程序崩溃并显示消息,指出文件不存在。

任何帮助表示赞赏

0 个答案:

没有答案