From 695c74453867c674fca948274cba86930910e148 Mon Sep 17 00:00:00 2001 From: kirillzyusko Date: Sat, 21 Mar 2026 14:47:00 +0100 Subject: [PATCH] fix: `KeyboardAwareScrollView` regression after optimization --- src/components/KeyboardAwareScrollView/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/KeyboardAwareScrollView/index.tsx b/src/components/KeyboardAwareScrollView/index.tsx index 3d2aaf36ec..f44251bb84 100644 --- a/src/components/KeyboardAwareScrollView/index.tsx +++ b/src/components/KeyboardAwareScrollView/index.tsx @@ -416,11 +416,12 @@ const KeyboardAwareScrollView = forwardRef< keyboardWillChangeSize || focusWasChanged ) { - syncKeyboardFrame(e); // persist scroll value scrollPosition.value = position.value; // just persist height - later will be used in interpolation keyboardHeight.value = e.height; + // and update keyboard spacer size + syncKeyboardFrame(e); } // focus was changed