标签: image flutter
当我要显示本地文档目录中的图像时,如何为flutter photo_view提供FileImage作为imageProvider?这些示例显示了Image.network示例代码,但我需要从设备加载图像。
答案 0 :(得分:0)
PhotoView接收图像提供者,可以是FileImage
PhotoView( imageProvider: FileImage("assets/uhlala.jpg") )