isDesktop static method

bool isDesktop(
  1. BuildContext context
)

Returns whether the screen size is desktop size.

Implementation

static bool isDesktop(BuildContext context) =>
    MediaQuery.of(context).size.width >= 1100;