Is it possible to add a background color to the Icon image? I am using the below code to render icon.
Icon(
Icons.check_circle_outline,
size: 35.0,
)
I want output like below when the image is drawn
Below Solution provide an exact output
Container(
color: Colors.blue,
padding: EdgeInsets.all(5),
child: ClipOval(
child: Container(
color: Colors.green,
child: Icon(
Icons.check,
color: Colors.white,
size: 30,
),
),
),
)
Output: