How do I remove Flutter IconButton big padding?

In this article, I will share with you How do I remove Flutter IconButton big padding?

Container(
  padding: const EdgeInsets.all(0.0),
  width: 30.0, // you can adjust the width as you need
  child: IconButton(
  ),
),

I hope it will help you. 

Tags: