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