aspectRatio static method

double aspectRatio(
  1. BuildContext context
)

It tells you the exact value of the aspectRatio of the screen

Implementation

static double aspectRatio(BuildContext context) {
  return MediaQuery.of(context).size.aspectRatio;
}