react-native-ui-lib
Version:
<p align="center"> <img src="https://user-images.githubusercontent.com/1780255/105469025-56759000-5ca0-11eb-993d-3568c1fd54f4.png" height="250px" style="display:block"/> </p> <p align="center">UI Toolset & Components Library for React Native</p> <p a
14 lines (13 loc) • 549 B
TypeScript
/// <reference types="react" />
import { KeyboardTrackingViewProps } from './KeyboardTrackingView';
/**
* @description: Used to add an inset when a keyboard is used and might hide part of the screen.
*
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/TextFieldScreen/InputsScreen.js
* @notes: This view is useful only for iOS.
*/
declare const KeyboardAwareInsetsView: {
(props: KeyboardTrackingViewProps): JSX.Element;
displayName: string;
};
export default KeyboardAwareInsetsView;