0 purchases
blur matrix
BlurMatrix #
A Flutter widget that draws a matrix of colors like gradients also with simple animation.
How to use #
Define a List of List of colors like this:
colors = [
[Colors.red, Colors.blue, Colors.yellowAccent],
[Colors.green, Colors.black, Colors.cyanAccent],
[Colors.yellowAccent, Colors.deepPurpleAccent, Colors.white],
[Colors.red, Colors.blue, Colors.yellowAccent],
];
copied to clipboard
or maybe like this for a Shimmer effect like result:
colors = [
[Colors.black.withOpacity(0.6), Colors.white.withOpacity(0.8)],
];
copied to clipboard
Then use BlurMatrix or BlurMatrixAnimate:
Container(
width: 250,
height: 250,
child: BlurMatrixAnimate(
colors: colors,
),
),
copied to clipboard
This widget could be a start for nice effects, so if you have some nice idea, please le me know!
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.