I want to remove this colored line of pixel rounded in IconButton
I think this line of pixel didn't relate of shadow
My code is:
Container(
boxShadow: [
BoxShadow(
color: Colors.transparent,
),
],
color: Colors.black,
shape: BoxShape.circle,
border: Border.all(
color: Colors.white,
width: 5,
),
),
child: IconButton(
color: Colors.white,
icon: Icon(
Icons.search,
),
),
),
I'm not sure if it's a bug in Flutter or not. You can try adding another colored
Container
as its child.Sample:
Usage: