From 738681a69a57a30f4376013feb183c8b85910c1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Espino=20Garc=C3=ADa?= Date: Mon, 5 May 2025 11:42:38 +0200 Subject: [PATCH] Fix iPad hw keyboard overlapping input (#8815) --- app/context/extra_keyboard/index.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/context/extra_keyboard/index.tsx b/app/context/extra_keyboard/index.tsx index 69282bf08..5f9ed9060 100644 --- a/app/context/extra_keyboard/index.tsx +++ b/app/context/extra_keyboard/index.tsx @@ -183,9 +183,6 @@ const ExtraKeyboardComponent = () => { const animatedStyle = useAnimatedStyle(() => { let height = keyb.height.value + offset; - if (keyb.height.value < 70) { - height = 0; // When using a hw keyboard - } if (context?.isExtraKeyboardVisible) { height = withTiming(maxKeyboardHeight.value, {duration: 250}); } else if (keyb.state.value === KeyboardState.CLOSED || keyb.state.value === KeyboardState.UNKNOWN) {