bytes_image_viewer 0.0.4 copy "bytes_image_viewer: ^0.0.4" to clipboard
bytes_image_viewer: ^0.0.4 copied to clipboard

bytes_image_viewer, takes the url which returns the bytes as image. You can implement it with autherization factor.

This is a very simple widget. You can use it when: Your GET IMAGE API returns Uint8List.

Features #

No need to write api calling and then pass the result to any other image viewer.

Usage #

please find the example here /example.

BytesImageViewer(
  height:100, //optional
  width:100,//optional
  fit: BoxFit.cover,//optional
  apiUrl:'image url',
  headers: {
    "Authorization":
    "Bearer yTiIsInN1YiI6IjEiLC"
  }, //optional
  loadingWidget: CircularProgressIndicator(
          color: Colors.red,
      ),//optional
  errorWidget: CircularProgressIndicator(
          color: Colors.red,
      ),//optional
);

###Additional information

Attributes Desscription
BytesImageViewer A widget that shows your image from the network image url(That returns Uint8List).
height Height of the image view
width width of the image view
headers You can provide any kind of header information for eg authorization token, content-type etc. (You can use this if you image requires any kind of authorization).
loadingWidget This widget is shown during the image is being downloaded from the network. You can consider it as a placeholder.
errorWidget This widget shows when any error occurred. And BytesImageViewer is unable to show the image from the network url.
3
likes
150
pub points
53%
popularity

Publisher

verified publisherandroidshashi.com

bytes_image_viewer, takes the url which returns the bytes as image. You can implement it with autherization factor.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

flutter, http

More

Packages that depend on bytes_image_viewer