Wraps the widget inside a SizedBox with a custom height.
SizedBox
Text("Hello").withHeight(50);
SizedBox withHeight(double height) => SizedBox(height: height, child: this);