image_network 2.3.0 copy "image_network: ^2.3.0" to clipboard
image_network: ^2.3.0 copied to clipboard

outdated

Image Network is a package that allows you to render images on the web using CanvasKit without having problems with CORS

2.3.0 #

  • Added option to directly use CachedNetworkImage to cache images:
imageCache: CachedNetworkImageProvider(imageUrl)
  • Removed cacheAndroidIos

2.2.0+1 #

  • README Update

2.2.0 #

  • Added option to display custom loading:
onLoading: const CircularProgressIndicator(
  color: Colors.indigoAccent,
),
  • Added option to display custom error:
onError: const Icon(
  Icons.error,
  color: Colors.red,
),

2.1.0+1 #

  • README Update

2.1.0 #

  • Added option to embed BoxFit in Image for Android && Ios:
fitAndroidIos: BoxFit.cover,
  • Added option to embed BoxFit in Image for Web:
fitWeb: BoxFitWeb.cover,
  • Added option to insert border radius in Image:
borderRadius: BorderRadius.circular(70),

2.0.0 #

  • Added new way to display image

  • Added option to show mouse pointer:

onPointer: true, // or false
  • Added option to save images to cache (Not available for Web):
cacheAndroidIos: true, // or false
  • Added option to change the fit of android and ios image. You can define it like this:
fitCarouselList: BoxFit.cover
  • Added function to get click on the image:
onTap: () {
    debugPrint("©gabriel_patrick_souza");
},

1.0.0 #

  • Initial release.
151
likes
0
pub points
96%
popularity

Publisher

unverified uploader

Image Network is a package that allows you to render images on the web using CanvasKit without having problems with CORS

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, http, webviewx

More

Packages that depend on image_network