I am trying to build a vertical list of icons. I decided to use Wrap & Column widgets for that. However, the spacing between the icons is too big. I did use spacing, but it doesn't seem to help. Any thoughts on how I can make spacing smaller?
child: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Padding( padding: const EdgeInsets.all(10.0), child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: <Widget>[ Container(child: Text('Title')), Container(child: Text('Category')), ], ), ), Wrap( direction: Axis.vertical, spacing: 1, runSpacing: 1, children: <Widget>[ IconButton( icon: Icon(Icons.check), iconSize: 14, onPressed: null, ), IconButton( icon: Icon(Icons.star_outline), iconSize: 14, onPressed: null, ), IconButton( icon: Icon(Icons.delete_outline), iconSize: 14, onPressed: () => deleteTx(tx.id), ), ], ), ], )