chore: fix blank screen issue when moving iOS floating keyboard

This commit is contained in:
Aman Harwara
2023-07-06 20:30:49 +05:30
parent 7923e9f198
commit ebc9fcb995
2 changed files with 5 additions and 3 deletions

View File

@@ -366,7 +366,9 @@ export class WebApplication extends SNApplication implements WebApplicationInter
}
handleMobileKeyboardWillChangeFrameEvent(frame: { height: number; contentHeight: number }): void {
setCustomViewportHeight(frame.contentHeight, 'px', true)
if (frame.contentHeight > 0) {
setCustomViewportHeight(frame.contentHeight, 'px', true)
}
this.notifyWebEvent(WebAppEvent.MobileKeyboardWillChangeFrame, frame)
}