What to use instead of MediaQueryData mediaQueryData = MediaQueryData.fromWindow(ui.window);?

236 views Asked by At

I am relatively new to flutter, and this is what I was using in my project to get the device's metrics:MediaQueryData mediaQueryData = MediaQueryData.fromWindow(ui.window);. However, in VSCode, I keep getting a message saying this has been been deprecated and I cannot quite figure out what to do instead.

I tried reading the flutter documentation, but it is not completely clear what to do, at least to me.

1

There are 1 answers

1
Mouaad Ouajib On

to get the device metrics use :

MediaQuery.of(context).size.height
MediaQuery.of(context).size.width