fix: Fixed issue with UI sometimes getting shifted up on iOS

This commit is contained in:
Antonella Sgarlatta
2025-06-24 03:53:36 -03:00
committed by GitHub
parent 5f61500ee0
commit c050a2cd33
5 changed files with 10 additions and 30 deletions

View File

@@ -21,7 +21,6 @@ export interface WebApplicationInterface extends ApplicationInterface {
isFloatingKeyboard: boolean
}): void
handleMobileKeyboardDidHideEvent(): void
handleUpdateSafeAreaInsets(insets: { top: number; bottom: number; left: number; right: number }): void
handleReceivedFileEvent(file: { name: string; mimeType: string; data: string }): void
handleReceivedTextEvent(item: { text: string; title?: string }): Promise<void>
handleReceivedLinkEvent(item: { link: string; title: string }): Promise<void>