getScreenDimensions static method

Size getScreenDimensions(
  1. BuildContext context
)

Get the screen size

Implementation

static Size getScreenDimensions(BuildContext context) {
  return MediaQuery.of(context).size;
}