Column, spacing
Cuando queremos un espacio entre los hijos children del widget Column, normalmente usan SizeBox, pero con Wrap se puede usar un atributo para el spaceado entre los hijos
Wrap( spacing: 20, // to apply margin in the main axis of the wrap runSpacing: 20, // to apply margin in the cross axis of the wrap children: <Widget>[ Text('child 1'), Text('child 2') ] )