xlOnly method

Widget xlOnly(
  1. BuildContext context
)

Shows the widget only on extra large screens.

Implementation

Widget xlOnly(BuildContext context) =>
    context.xlOnly ? this : const SizedBox.shrink();