react-native-avoid-softinput
Version:
Native logic for avoiding covering text inputs by soft input views
19 lines (17 loc) • 520 B
JavaScript
;
import * as React from 'react';
import { View } from 'react-native';
import { jsx as _jsx } from "react/jsx-runtime";
const NativeAvoidSoftInputView = View;
/**
* 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 {
render() {
return /*#__PURE__*/_jsx(NativeAvoidSoftInputView, {
...this.props
});
}
}
//# sourceMappingURL=AvoidSoftInputViewCompat.js.map