I want a help to create this blur effect as a shadow on an image in flutter and make it circular like that.
You have to put a blur with ImageFilter.blur
and then give it a slight color for it to blur with.
...
child: Container(
width:100,height:100,
decoration:const BoxDecoration(
image: DecorationImage(
image: AssetImage(
'...'), // insert image path here
fit: BoxFit.cover,
),
shape:BoxShape.circle),
child: ClipRRect(
borderRadius: BorderRadius.circular(100/2), //divide width of Container by 2 to make it rounded
child: BackdropFilter(
filter:ImageFilter.blur(
sigmaX: 30, // mess with this to update blur
sigmaY: 30
),
child:Container(
decoration:const BoxDecoration(
shape:BoxShape.circle,
color:Colors.black26 //change this color according to need.
),
),
),
),
),
...