0

I want to create a mesh gradient with blur and noise effect. I already added blur effect using ImageFilter but don't know how to add grainy noise on top of it.enter image description here

s4nk37
  • 95
  • 7

1 Answers1

0

It worked by adding png of grainy texture, but I hope there are some better ways. I am open for further inputs.

  Opacity(
       opacity: 0.1,
       child: Image.asset(
      'assets/images/noise.png',
       height: double.infinity,
       width: double.infinity,
       fit: BoxFit.fill,
      ),
 ),

enter image description here

s4nk37
  • 95
  • 7