isMobile static method

bool isMobile(
  1. BuildContext context
)

Returns true if the device screen width is less than 600 pixels, typically considered a mobile device.

Implementation

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