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