isKeyboardShowing static method

bool isKeyboardShowing()

Other Utils Methods Note: you should DialogShower.init(context) first ~~~

Implementation

/// Note: you should DialogShower.init(context) first ~~~
static bool isKeyboardShowing() {
  assert(gContext != null, 'Should call DialogShower.init first in your runApp context');
  return MediaQuery.of(gContext!).viewInsets.bottom > 0;
}