Add width
Widget withWidth(double? width) { return width == null ? this : SizedBox( width: width, child: this, ); }