responsiveColumns static method

int responsiveColumns(
  1. BuildContext context
)

Implementation

static int responsiveColumns(BuildContext context) {
  if (isLargeDesktop(context)) return 4;
  if (isDesktop(context)) return 3;
  if (isTablet(context)) return 2;
  return 1;
}