visible method

Widget visible(
  1. bool visible, [
  2. double? breakpoint
])

Shows or hides the widget based on visible.

Maps to Bootstrap's display utilities (conceptually).

Implementation

Widget visible(bool visible, [double? breakpoint]) => _apply(
      breakpoint,
      (w) => Visibility(
        visible: visible,
        child: w,
      ),
    );