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