diff --git a/src/components/bottomSheet/BottomSheet.tsx b/src/components/bottomSheet/BottomSheet.tsx index 35d2bcf11..6bedc0367 100644 --- a/src/components/bottomSheet/BottomSheet.tsx +++ b/src/components/bottomSheet/BottomSheet.tsx @@ -1436,6 +1436,7 @@ const BottomSheetComponent = forwardRef( method: 'useAnimatedReaction::OnSnapPointChange', params: { snapPoints, + containerHeight, }, }); @@ -1479,7 +1480,11 @@ const BottomSheetComponent = forwardRef( useAnimatedReaction( () => ({ _keyboardState: animatedKeyboardState.value, - _keyboardHeight: animatedKeyboardHeight.value, + _keyboardHeight: + Platform.OS === 'android' && + android_keyboardInputMode === KEYBOARD_INPUT_MODE.adjustResize + ? 0 + : animatedKeyboardHeight.value, }), (result, _previousResult) => { const { _keyboardState, _keyboardHeight } = result;