Widget flexible({int flex = 1, bool flexEnabled = true}) { if (flexEnabled == false) { return this; } return Flexible( flex: flex, child: this, ); }