showOnlyMobile method

Widget showOnlyMobile(
  1. BuildContext context
)

Implementation

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