如何将flutter photo_view包与本地文件一起使用

时间:2019-04-08 11:40:25

标签: image flutter

当我要显示本地文档目录中的图像时,如何为flutter photo_view提供FileImage作为imageProvider?这些示例显示了Image.network示例代码,但我需要从设备加载图像。

1 个答案:

答案 0 :(得分:0)

PhotoView接收图像提供者,可以是FileImage

PhotoView(
 imageProvider: FileImage("assets/uhlala.jpg")
)