Answers for "how to remove padding from icon used in iconbutton in flutter"

1

remove iconbutton padding flutter

Container(
  padding: const EdgeInsets.all(0.0),
  width: 30.0, // you can adjust the width as you need
  child: IconButton(
  ),
),
Posted by: Guest on May-19-2021

Code answers related to "how to remove padding from icon used in iconbutton in flutter"

Browse Popular Code Answers by Language