visible method
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,
),
);