UNPKG

react-native-avoid-softinput

Version:

Native logic for avoiding covering text inputs by soft input views

25 lines (23 loc) 1.31 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var React = _interopRequireWildcard(require("react")); var _reactNative = require("react-native"); var _jsxRuntime = require("react/jsx-runtime"); function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); } const NativeAvoidSoftInputView = _reactNative.View; /** * Regular View component which is listening for soft input events and manages whether * it should avoid soft input */ class AvoidSoftInputView extends React.Component { render() { return /*#__PURE__*/(0, _jsxRuntime.jsx)(NativeAvoidSoftInputView, { ...this.props }); } } exports.default = AvoidSoftInputView; //# sourceMappingURL=AvoidSoftInputViewCompat.js.map