fix: Fixed issue where moving the floating keyboard on iPad would lead to blank space on screen

This commit is contained in:
Aman Harwara
2023-08-04 00:30:12 +05:30
parent e8c7c10358
commit f7a1c6ea65
4 changed files with 20 additions and 5 deletions

View File

@@ -75,7 +75,7 @@ export class MobileWebReceiver {
break
case ReactNativeToWebEvent.KeyboardFrameWillChange:
void this.application.handleMobileKeyboardWillChangeFrameEvent(
messageData as { height: number; contentHeight: number },
messageData as { height: number; contentHeight: number; isFloatingKeyboard: boolean },
)
break
case ReactNativeToWebEvent.KeyboardFrameDidChange: