Closed SbiCA closed 5 months ago
Maybe you can create your own provider and implements it base on ExtendedNetworkImageProvider
@zmtzawqlp I could give a try, if this is worth a PR? and you think it's for the benefit of everyone. just a word of warning I'm not a dart expert š
@zmtzawqlp I could give a try, if this is worth a PR? and you think it's for the benefit of everyone. just a word of warning I'm not a dart expert š
i think we should keep the library simple, and only use flutter official API.
Platforms
dart, Android, iOS, Web, Linux
Description
I'd like to make use of http2/http3 for image loading using dio or my own http.client.
Atm. it seems that the package is using a static instance of http.client and doesn't allow to provide my own instance.
code
I'd like to use Dio to load the bytes since it supports h2 instead of the static http.client instance
see https://github.com/cfug/dio/tree/main/plugins/http2_adapter for more details on how the adapter works.
Why