Make a widget visible when a condition is true.
Widget visibleWhen(bool condition) { return Visibility( visible: condition, child: this, ); }