@gorhom/bottom-sheet
Version:
A performant interactive bottom sheet with fully configurable options 🚀
20 lines (19 loc) • 425 B
TypeScript
import { KeyboardEventEasing } from 'react-native';
import { KEYBOARD_STATE } from '../constants';
export declare const useKeyboard: () => {
state: {
value: KEYBOARD_STATE;
};
height: {
value: number;
};
animationEasing: {
value: KeyboardEventEasing;
};
animationDuration: {
value: number;
};
shouldHandleKeyboardEvents: {
value: boolean;
};
};