A library based on BlurHash algorithm to add blur like effects for images in android that uses size reduction to load the blurred image faster in jetpack compose.
repositories {
mavenCentral()
}
implementation("io.github.mortezanedaei:blurhash-compose:1.0.0")
It encodes the given image into a generated BlurHash string using BlurHashEncoder and then decodes it using BlurHashDecoder to generate blurred bitmap of the image to show the image.
AsyncBlurImage(imageUrl = IMAGE_URL)