IconButton takes too much space to the edge of screen. This is how I made it:
return Scaffold(
body: Column(
children: [
Container(
margin: EdgeInsets.all(20),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: <Widget>[
Expanded(child: Input()),
IconButton(
icon: const Icon(Icons.cancel),
onPressed: () {},
),
],
), ...
How to fix it to make icon closer to the margin edge?
What you are looking for is the
constraints
parameter on theIconButton
.You can use it like this.
Information on how to easily solve these problems can be obtained by checking the internal documentation of your
IconButton
.If you
cmd + click
on theIconButton
and check it's build method, you will see that it is using aConstrainedBox
to decide it's size based on some factors.One such factor is the
constraints
that we pass to the Widget.