flutter的photoView插件有人用过吗,在预览多张图片时,如果地址只能future获取该如何操作

新手上路,请多包涵
PhotoViewGalleryPageOptions _buildItem(BuildContext context, int index) {
 final item = (widget.bloc.state as AssetPhotoInfo).images[index].thumbDataWithSize(width, height).;
 return PhotoViewGalleryPageOptions(
     imageProvider: MemoryImage(item),
     minScale: PhotoViewComputedScale.contained * 1,
     maxScale: PhotoViewComputedScale.covered * 2,
 ); }

代码中item是从相册获取的图片,这个图片是异步获取的,所以得到的值是future<Uint8List>,该类型如果放在memoryImage中会报错,试了多种方法依然无果,futureBuilder由于返回的是widget,也不适用

阅读 1.8k
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题