Last updated:
0 purchases
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
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.