Widget addBelow(Widget? widget) { if (widget == null) { return this; } return Column(children: [this, widget]); }