http_image_provider 0.0.1 http_image_provider: ^0.0.1 copied to clipboard
An image provider which makes use of package:http to instead of dart:io
HTTP image provider #
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