HTTP image provider

pub package likes popularity pub points

This is an alternative to Image.network() which makes use of the http package.

Usage

Image(
  image: HttpImage(Uri.parse('https://http.cat/200')),
)

Optionally, you can supply your own Client.

// Either by setting it globally
HttpImage.defaultClient = Client();

// or by supplying it via constructor
Image(
  image: HttpImage(
    Uri.parse('https://http.cat/200'),
    client: Client(),
  ),
)

If you use dio instead of http, try dio_image_provider

📣 About the author

  • Twitter Follow
  • GitHub followers