isLandscape static method
Check if the device is in landscape orientation
Implementation
static bool isLandscape(BuildContext context) {
return MediaQuery.of(context).orientation == Orientation.landscape;
}
Check if the device is in landscape orientation
static bool isLandscape(BuildContext context) {
return MediaQuery.of(context).orientation == Orientation.landscape;
}