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