hash_cached_image 0.0.1 copy "hash_cached_image: ^0.0.1" to clipboard
hash_cached_image: ^0.0.1 copied to clipboard

A flutter widget to use both CachedNetworkImage and BlurHash combine.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:hash_cached_image/hash_cached_image.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: Scaffold(
          body: Center(
        child: HashCachedImage(
            imageUrl: "your image url", hash: "your hash", fit: BoxFit.fill),
      )),
    );
  }
}
12
likes
130
points
89
downloads

Publisher

unverified uploader

Weekly Downloads

A flutter widget to use both CachedNetworkImage and BlurHash combine.

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

cached_network_image, flutter

More

Packages that depend on hash_cached_image