Add padding to any widget
Widget withPaddingAll(double padding) { return Padding( padding: EdgeInsets.all(padding), child: this, ); }