DEV Community

Vishnu Reji
Vishnu Reji

Posted on

4 2

Flutter : Detect keyboard open and close without using a external package

Step 1
Create a variable

bool _keyboardVisible = false;
Enter fullscreen mode Exit fullscreen mode

in StatefullWidget
Step 2
Then initialize that variable in the build widget;

@override
Widget build(BuildContext context) {
    _keyboardVisible = MediaQuery.of(context).viewInsets.bottom != 0;
    return child;
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Sentry mobile image

Improving mobile performance, from slow screens to app start time

Based on our experience working with thousands of mobile developer teams, we developed a mobile monitoring maturity curve.

Read more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay