isDesktop static method
Implementation
static bool isDesktop(BuildContext context) {
final width = MediaQuery.of(context).size.width;
return width >= desktopBreakpoint && width < largeDesktopBreakpoint;
}
static bool isDesktop(BuildContext context) {
final width = MediaQuery.of(context).size.width;
return width >= desktopBreakpoint && width < largeDesktopBreakpoint;
}