isMobile static method

bool isMobile(
  1. BuildContext context
)

Returns whether the screen size is mobile size.

Implementation

static bool isMobile(BuildContext context) =>
    MediaQuery.of(context).size.width < 850;