flutter_ok_image icon indicating copy to clipboard operation
flutter_ok_image copied to clipboard

Support for loading images from storage

Open TejasBhitle opened this issue 6 years ago • 1 comments

I want to load images from my storage. These images have urls of the type file://path/to/storage/image.jpg and not of the network url type (https://path/to/image). Is there any way to implement this ??

TejasBhitle avatar Jun 23 '19 13:06 TejasBhitle

This widget currently only supports access to network images. Local images can be considered for support. As long as it is the url of the file protocol, I can directly call Image.file to support it.

However, it is still recommended to use Image.file.

CaiJingLong avatar Jul 24 '19 07:07 CaiJingLong