sm static method

bool sm(
  1. dynamic context
)

Implementation

static bool sm(context) {
  final size = MediaQuery.of(context).size.width;
  if (size < 650) { //650
    return true;
  } else {
    return false;
  }
}