Plugin(s)
@capacitor/keyboard@8.0.5 (iOS)
Description
With the default resize: "native" policy, the WKWebView frame can get permanently stuck at its keyboard-shrunk height after the app is backgrounded and returned to. The web content then occupies only the top of the screen, with a black band below it exactly one keyboard-height tall.
The band is pure black rather than ios.backgroundColor, because CAPBridgeViewController.loadView() does view = webView — shrinking the WebView shrinks the view controller's root view, exposing the bare UIWindow.
Measured on a 956pt-tall device: web content ends at exactly 611pt, black band is 345pt. That is precisely the ResizeNative arithmetic in _updateFrame:
webView.frame.height = window.height - origin.y - paddingBottom // 956 - 0 - 345 = 611
Root cause
setKeyboardHeight:delay: assigns paddingBottom synchronously, but defers the frame update via performSelector:afterDelay::
- (void)setKeyboardHeight:(int)height delay:(NSTimeInterval)delay
{
if (self.paddingBottom == height) {
return; // (2) guard makes the desync permanent
}
self.paddingBottom = height; // (1) state updated NOW
...
[weakSelf performSelector:@selector(_updateFrame) withObject:nil afterDelay:delay ...]; // frame updated LATER
}
Backgrounding with the keyboard up fires keyboardWillHide, which calls setKeyboardHeight:0 delay:0.01. If the app suspends inside that 10ms window, the run loop stops and _updateFrame is never delivered — leaving paddingBottom == 0 while the frame is still short by the keyboard height.
It is then unrecoverable, because:
_updateFrame is reachable from exactly one call site, setKeyboardHeight:
setKeyboardHeight: early-returns whenever paddingBottom already equals the requested height — which it now always does for 0
setResizeMode: only flips the enum; it never touches the frame
So every subsequent keyboardWillHide is a no-op and the WebView stays short for the remaining life of the process. The guard compares the intended height against itself rather than against the actual frame, so the model believes it is already reconciled.
Reproduction / evidence
Reproduced on an iPhone 17 Pro Max simulator (iOS 26, Xcode 26.6) by injecting the exact stuck state — frame short by 345pt while paddingBottom is 0 — and performing a real background/foreground cycle (verified same PID, i.e. a genuine resume rather than a cold start):
didBecomeActive paddingBottom=0 frame BEFORE={{0, 0}, {440, 611}}
The frame stays at 611 indefinitely; no keyboard event can repair it.
User-level workaround: focus any text input and dismiss the keyboard. That drives paddingBottom 0 → 345 → 0, passing the guard in both directions, and the frame is restored.
Expected behavior
The WebView frame should return to full height once the keyboard is gone, regardless of whether the app was suspended while the deferred update was pending.
Suggested fix
Re-assert the frame when the app returns to the foreground. _updateFrame is already idempotent — it recomputes purely from the current window bounds and paddingBottom — so it is a no-op when state is consistent and a repair when a deferred update was dropped:
// in -load
[nc addObserver:self selector:@selector(onAppDidBecomeActive:)
name:UIApplicationDidBecomeActiveNotification object:nil];
- (void)onAppDidBecomeActive:(NSNotification *)notification
{
[self _updateFrame]; // deliberately not via setKeyboardHeight:, whose guard is the problem
}
Verified: with this in place the same background/foreground cycle restores the frame from 611 to 956, and the black band goes from 345pt to 0pt.
Alternatively (or additionally), the guard in setKeyboardHeight: could compare against the real webView.frame.size.height instead of the cached paddingBottom, so state can never silently diverge from the view.
Unrelated minor bug spotted nearby
In _updateFrame, f is declared uninitialized:
CGRect f, wf = CGRectZero; // only `wf` is initialized
UIWindow *window = [self currentKeyWindow];
if (window) {
f = [window bounds];
}
...
[self.webView setFrame:CGRectMake(wf.origin.x, wf.origin.y, f.size.width - wf.origin.x, f.size.height - wf.origin.y - self.paddingBottom)];
If currentKeyWindow returns nil, f holds stack garbage which is then written straight into the WebView frame. Worth initializing to CGRectZero and bailing when there is no window to measure.
Platforms
iOS
Plugin(s)
@capacitor/keyboard@8.0.5(iOS)Description
With the default
resize: "native"policy, the WKWebView frame can get permanently stuck at its keyboard-shrunk height after the app is backgrounded and returned to. The web content then occupies only the top of the screen, with a black band below it exactly one keyboard-height tall.The band is pure black rather than
ios.backgroundColor, becauseCAPBridgeViewController.loadView()doesview = webView— shrinking the WebView shrinks the view controller's root view, exposing the bareUIWindow.Measured on a 956pt-tall device: web content ends at exactly 611pt, black band is 345pt. That is precisely the
ResizeNativearithmetic in_updateFrame:webView.frame.height = window.height - origin.y - paddingBottom // 956 - 0 - 345 = 611Root cause
setKeyboardHeight:delay:assignspaddingBottomsynchronously, but defers the frame update viaperformSelector:afterDelay::Backgrounding with the keyboard up fires
keyboardWillHide, which callssetKeyboardHeight:0 delay:0.01. If the app suspends inside that 10ms window, the run loop stops and_updateFrameis never delivered — leavingpaddingBottom == 0while the frame is still short by the keyboard height.It is then unrecoverable, because:
_updateFrameis reachable from exactly one call site,setKeyboardHeight:setKeyboardHeight:early-returns wheneverpaddingBottomalready equals the requested height — which it now always does for0setResizeMode:only flips the enum; it never touches the frameSo every subsequent
keyboardWillHideis a no-op and the WebView stays short for the remaining life of the process. The guard compares the intended height against itself rather than against the actual frame, so the model believes it is already reconciled.Reproduction / evidence
Reproduced on an iPhone 17 Pro Max simulator (iOS 26, Xcode 26.6) by injecting the exact stuck state — frame short by 345pt while
paddingBottomis 0 — and performing a real background/foreground cycle (verified same PID, i.e. a genuine resume rather than a cold start):The frame stays at 611 indefinitely; no keyboard event can repair it.
User-level workaround: focus any text input and dismiss the keyboard. That drives
paddingBottom0 → 345 → 0, passing the guard in both directions, and the frame is restored.Expected behavior
The WebView frame should return to full height once the keyboard is gone, regardless of whether the app was suspended while the deferred update was pending.
Suggested fix
Re-assert the frame when the app returns to the foreground.
_updateFrameis already idempotent — it recomputes purely from the current window bounds andpaddingBottom— so it is a no-op when state is consistent and a repair when a deferred update was dropped:Verified: with this in place the same background/foreground cycle restores the frame from 611 to 956, and the black band goes from 345pt to 0pt.
Alternatively (or additionally), the guard in
setKeyboardHeight:could compare against the realwebView.frame.size.heightinstead of the cachedpaddingBottom, so state can never silently diverge from the view.Unrelated minor bug spotted nearby
In
_updateFrame,fis declared uninitialized:If
currentKeyWindowreturns nil,fholds stack garbage which is then written straight into the WebView frame. Worth initializing toCGRectZeroand bailing when there is no window to measure.Platforms
iOS