getKeyboardHeight static method

double getKeyboardHeight()

Returns the height of the keyboard.

Implementation

static double getKeyboardHeight() {
  final viewInsets = MediaQuery.of(Get.context!).viewInsets;
  return viewInsets.bottom;
}