mdOnly method

Widget mdOnly(
  1. BuildContext context
)

Shows the widget only on medium screens.

Implementation

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