shouldUseTabBar static method

bool shouldUseTabBar(
  1. BuildContext context
)

Implementation

static bool shouldUseTabBar(BuildContext context) {
  return isTablet(context) || isDesktop(context);
}