getInputKeyboardHeight method
Implementation
double getInputKeyboardHeight(BuildContext context) {
return _inputKeyboardHeight > 0
? _inputKeyboardHeight
: MediaQuery.of(context).viewInsets.bottom;
}
double getInputKeyboardHeight(BuildContext context) {
return _inputKeyboardHeight > 0
? _inputKeyboardHeight
: MediaQuery.of(context).viewInsets.bottom;
}