showOnlyTablet method

Widget showOnlyTablet(
  1. BuildContext context
)

Implementation

Widget showOnlyTablet(BuildContext context) =>
    MediaQuery.of(context).size.width >= 600 ? this : const SizedBox.shrink();