flyerhq / flutter_link_previewer

Customizable link and URL preview extracted from the provided text with the ability to render from the cache. Ideal for chat applications.
MIT License
72 stars 75 forks source link

Support Custom Image Builder #28

Closed theachoem closed 3 years ago

theachoem commented 3 years ago

It would be great to support different image builder, eg. CachedNetworkImage, or our own shimmer image widget...

LinkPreview(
  enableAnimation: true,
  imageBuilder: (context, imageUrl){
    return CachedNetworkImage(imageUrl: imageUrl);
  },
 ...
}
demchenkoalex commented 3 years ago

Released in v2.3.0