react-native-avoid-softinput
Version:
Native logic for avoiding covering text inputs by soft input views
10 lines • 393 B
TypeScript
import * as React from 'react';
import type { AvoidSoftInputViewProps } from './types';
/**
* Regular View component which is listening for soft input events and manages whether
* it should avoid soft input
*/
export default class AvoidSoftInputView extends React.Component<AvoidSoftInputViewProps> {
render(): React.JSX.Element;
}
//# sourceMappingURL=AvoidSoftInputViewCompat.d.ts.map