Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 502 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 502 Bytes

hf_retry

A plugin to enhance user experience during network downtime.

  • Shows placeholder image in place of NetworkImage when the network is unavailable
  • Retries and fetches NetworkImage as soon as the device is connected to the internet

Just use NetworkImageWithRetry in place of NetworkImage

Example

Image(
  image: NetworkImageWithRetry('http://example.com/avatars/123.jpg'),
  errorBuilder: (context, _, __) {
    return FlutterLogo(
      size: 200,
    );
  },
),