Skip to main content
Version: 3.x

useAnimatedKeyboard

useAnimatedKeyboard lets you create animations based on state and height of the virtual keyboard.

caution

Android implementation of useAnimatedKeyboard has drawbacks on Android SDK < 30, for more details see remarks section.

Reference

import { useAnimatedKeyboard, useAnimatedStyle } from 'react-native-reanimated';

export default function App() {
const keyboard = useAnimatedKeyboard();

const animatedStyles = useAnimatedStyle(() => ({
transform: [{ translateY: -keyboard.height.value }],
}));
}

Type definitions

// --- Function declaration ---

function useAnimatedKeyboard(
options: AnimatedKeyboardOptions
): AnimatedKeyboardInfo;

// --- Configuration types ---

export interface AnimatedKeyboardOptions {
isStatusBarTranslucentAndroid?: boolean;
}

// --- Return types ---

export type AnimatedKeyboardInfo = {
height: SharedValue<number>;
state: SharedValue<KeyboardState>;
};

export enum KeyboardState {
UNKNOWN = 0,
OPENING = 1,
OPEN = 2,
CLOSING = 3,
CLOSED = 4,
}

Arguments

options
Optional

Optional object containing additional configuration:

  • isStatusBarTranslucentAndroid - removes top inset on Android i.e. to use translucent status bar on Android, set this option to true. Defaults to false. Ignored on iOS.

Returns

Hook useAnimatedKeyboard returns an object containing these fields:

NameTypeDescription
heightSharedValue<number>A shared value containing current height of the keyboard.
stateSharedValue<KeyboardState>A shared value containing current state of the keyboard. Possible states: { CLOSED, OPEN, CLOSING, OPENING }

Example

Loading...

Remarks

  • On Android, make sure to set android:windowSoftInputMode in your AndroidManifest.xml to adjustResize. Then, using the useAnimatedKeyboard hook disables the default Android behavior (resizing the view to accommodate keyboard) in the whole app. Using values from useAnimatedKeyboard hook you can handle the keyboard yourself. Unmounting all components that use useAnimatedKeyboard hook brings back the default Android behavior.

  • On Android, using the useAnimatedKeyboard hook expands root view to full screen (immersive mode) and takes control over insets management.

    • When isStatusBarTranslucentAndroid is false it applies the top and bottom margins according to the insets.

    • When isStatusBarTranslucentAndroid is true it applies bottom padding according to the navigation inset and sets top margin to 0.

  • On Android, when using navigation with native header, isStatusBarTranslucentAndroid doesn't affect the top inset.

  • On Android SDK < 30, when status bar is hidden, the keyboard reverts to the default Android behavior.

Platform compatibility

AndroidiOSWeb