flutter_blurhash_loader

Last updated:

0 purchases

flutter_blurhash_loader Image
flutter_blurhash_loader Images
Add to Cart

Description:

flutter blurhash loader

Flutter BlurHash Loader #
Thanks to original creators of BlurHash
We have implemented Loader on BlurHash
Flutter Code #
Constrain your widget render area and let BlurHash fill the pixels.
class BlurHashApp extends StatelessWidget {
const BlurHashApp({Key key}) : super(key: key);

@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(title: Text("BlurHash")),
body: SizedBox.expand(
child: Center(
child: AspectRatio(
aspectRatio: 1.6,
child: BlurHash(
hash: "L5H2EC=PM+yV0g-mq.wG9c010J}I",
showLoader: true,
loaderColor: Colors.white,
loaderWidth: 70,
loaderHeight: 70,
strokeWidth: 3,
),
),
),
),
),
);
}
}
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.