xl static method
Implementation
static bool xl(context) {
final size = MediaQuery.of(context).size.width;
if (size >= 1200) {
return true;
} else {
return false;
}
}
static bool xl(context) {
final size = MediaQuery.of(context).size.width;
if (size >= 1200) {
return true;
} else {
return false;
}
}