UNPKG

react-native-ui-lib

Version:

[![SWUbanner](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner-direct.svg)](https://stand-with-ukraine.pp.ua)

20 lines (19 loc) 729 B
import CustomKeyboardViewBase, { CustomKeyboardViewBaseProps } from './../CustomKeyboardViewBase'; export type CustomKeyboardViewProps = CustomKeyboardViewBaseProps & { /** * The reference to the actual text input (or the keyboard may not reset when instructed to, etc.) */ inputRef?: any; useSafeArea?: boolean; }; export default class CustomKeyboardView extends CustomKeyboardViewBase<CustomKeyboardViewProps> { static displayName: string; static defaultProps: { initialProps: {}; useSafeArea: boolean; }; constructor(props: CustomKeyboardViewProps); componentWillUnmount(): void; componentDidUpdate(prevProps: CustomKeyboardViewProps): void; render(): null; }