IS_PORTRAIT function

bool IS_PORTRAIT(
  1. dynamic context
)

Implementation

bool IS_PORTRAIT(context) {
  double screenHeight = MediaQuery.of(context).size.height;
  double screenWidth = MediaQuery.of(context).size.width;
  return screenWidth > screenHeight;
}