Intermediate Flutter
Q48 / 100

What information does MediaQuery provide in Flutter?

Correct! Well done.

Incorrect.

The correct answer is B) Device screen size, orientation, pixel density, text scale factor, and system UI insets (safe area)

B

Correct Answer

Device screen size, orientation, pixel density, text scale factor, and system UI insets (safe area)

Explanation

MediaQuery.of(context) returns a MediaQueryData object with: screen size (size.width/height), devicePixelRatio, textScaleFactor, padding (safe area insets for notches), and system UI visibility info.

Progress
48/100