├── .github └── workflows │ └── prepare.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── example ├── .gitignore ├── README.md ├── lib │ └── main.dart ├── pubspec.yaml └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png │ ├── index.html │ └── manifest.json ├── lib ├── flutter_blurhash.dart └── src │ ├── blurhash.dart │ ├── blurhash_image.dart │ └── blurhash_widget.dart ├── pubspec.yaml ├── screenshots ├── blurred.png └── loaded.png └── test └── blur_hash_widget_test.dart /.github/workflows/prepare.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_blurhash/HEAD/.github/workflows/prepare.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_blurhash/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_blurhash/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_blurhash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_blurhash/HEAD/README.md -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_blurhash/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_blurhash/HEAD/example/README.md -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_blurhash/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_blurhash/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_blurhash/HEAD/example/web/favicon.png -------------------------------------------------------------------------------- /example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_blurhash/HEAD/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_blurhash/HEAD/example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /example/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_blurhash/HEAD/example/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /example/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_blurhash/HEAD/example/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_blurhash/HEAD/example/web/index.html -------------------------------------------------------------------------------- /example/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_blurhash/HEAD/example/web/manifest.json -------------------------------------------------------------------------------- /lib/flutter_blurhash.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_blurhash/HEAD/lib/flutter_blurhash.dart -------------------------------------------------------------------------------- /lib/src/blurhash.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_blurhash/HEAD/lib/src/blurhash.dart -------------------------------------------------------------------------------- /lib/src/blurhash_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_blurhash/HEAD/lib/src/blurhash_image.dart -------------------------------------------------------------------------------- /lib/src/blurhash_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_blurhash/HEAD/lib/src/blurhash_widget.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_blurhash/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /screenshots/blurred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_blurhash/HEAD/screenshots/blurred.png -------------------------------------------------------------------------------- /screenshots/loaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_blurhash/HEAD/screenshots/loaded.png -------------------------------------------------------------------------------- /test/blur_hash_widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_blurhash/HEAD/test/blur_hash_widget_test.dart --------------------------------------------------------------------------------