Wraps the widget inside a SizedBox with a custom width.
SizedBox
Text("Hello").withWidth(200);
SizedBox withWidth(double width) => SizedBox(width: width, child: this);