OpenFlutter / flutter_screenutil

Flutter screen adaptation, font adaptation, get screen information
https://pub.dartlang.org/packages/flutter_screenutil
Apache License 2.0
3.88k stars 494 forks source link

MediaQuery.of(context) viewInsets is not working #389

Closed mertcandev closed 2 years ago

mertcandev commented 2 years ago

Hi all,

Noticed this error while working on a modal bottom sheet. Trying to use viewInsets.bottom in order to move the bottom sheet upwards while keyboard appears. I was not able to manage it properly. Bottom sheet was always overlapped by the keyboard even though I tried every solution.

For the last try, I moved the codes to a new project which is not involved with screenUtil package and seems it works smoothly this way.

Without screenUtil;

image Screenshot_1652168097

With ScreenUtil

image

Am I doing something wrong or missing something?

Mounir-Bouaiche commented 2 years ago

Did you use useInheritedMediaQuery: true in MaterialApp?

mertcandev commented 2 years ago

Yes, been using it since the beginning.

Mounir-Bouaiche commented 2 years ago

This is similar to issue #385

mertcandev commented 2 years ago

Oh god. Thank you so much. Fixed it.