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.
Asked
Active
Viewed 390 times
0

s4nk37
- 95
- 7
-
1please add image of desired result – Karan Mehta Apr 13 '23 at 09:03
-
Already added. Above Image has slight noise on top of blur. Kindly check again. – s4nk37 Apr 13 '23 at 09:09
1 Answers
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,
),
),

s4nk37
- 95
- 7