mirror of
https://github.com/standardnotes/app
synced 2026-08-03 15:17:27 -04:00
fix: Fixed issue with keyboard on Android covering content (#2899)
This commit is contained in:
@@ -73,15 +73,13 @@ export class MobileWebReceiver {
|
||||
case ReactNativeToWebEvent.ColorSchemeChanged:
|
||||
void this.application.handleMobileColorSchemeChangeEvent()
|
||||
break
|
||||
case ReactNativeToWebEvent.KeyboardFrameWillChange:
|
||||
case ReactNativeToWebEvent.KeyboardSizeChanged:
|
||||
void this.application.handleMobileKeyboardWillChangeFrameEvent(
|
||||
messageData as { height: number; contentHeight: number; isFloatingKeyboard: boolean },
|
||||
)
|
||||
break
|
||||
case ReactNativeToWebEvent.KeyboardFrameDidChange:
|
||||
void this.application.handleMobileKeyboardDidChangeFrameEvent(
|
||||
messageData as { height: number; contentHeight: number },
|
||||
)
|
||||
case ReactNativeToWebEvent.KeyboardDidHide:
|
||||
void this.application.handleMobileKeyboardDidHideEvent()
|
||||
break
|
||||
case ReactNativeToWebEvent.ReceivedFile:
|
||||
void this.application.handleReceivedFileEvent(
|
||||
|
||||
Reference in New Issue
Block a user