isDesktop static method
Checks if the current device is a desktop.
Returns true if the screen width is 1024 pixels or more.
Implementation
static bool isDesktop(BuildContext context) => MediaQuery.of(context).size.width >= 1024;
Checks if the current device is a desktop.
Returns true if the screen width is 1024 pixels or more.
static bool isDesktop(BuildContext context) => MediaQuery.of(context).size.width >= 1024;