react-native-avoid-softinput
Version:
Native logic for avoiding covering text inputs by soft input views
17 lines (16 loc) • 496 B
JavaScript
;
import * as React from 'react';
import NativeAvoidSoftInputView from './NativeAvoidSoftInputView';
import { jsx as _jsx } from "react/jsx-runtime";
/**
* Regular View component which is listening for soft input events and manages whether
* it should avoid soft input
*/
export class AvoidSoftInputView extends React.Component {
render() {
return /*#__PURE__*/_jsx(NativeAvoidSoftInputView, {
...this.props
});
}
}
//# sourceMappingURL=AvoidSoftInputView.js.map