shouldShowSidebar static method

bool shouldShowSidebar(
  1. BuildContext context
)

Implementation

static bool shouldShowSidebar(BuildContext context) {
  return isDesktop(context) || (isTablet(context) && isLandscape(context));
}