UNPKG

react-native-gallery-preview

Version:

<div> <img align="right" height="720" src="example.gif"> </div>

40 lines (39 loc) 2.02 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ReText = void 0; var _react = _interopRequireDefault(require("react")); var _reactNative = require("react-native"); var _reactNativeReanimated = _interopRequireWildcard(require("react-native-reanimated")); 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); } function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; } const AnimatedTextInput = _reactNativeReanimated.default.createAnimatedComponent(_reactNative.TextInput); const ReText = props => { const { text, value: _providedValue, style } = { style: {}, ...props }; const providedValue = (0, _reactNativeReanimated.useDerivedValue)(() => typeof _providedValue === "number" || typeof _providedValue === "boolean" ? _providedValue : typeof _providedValue.value === "number" ? _providedValue.value.toFixed(2) : _providedValue.value); const animatedProps = (0, _reactNativeReanimated.useAnimatedProps)(() => { return { text: `${text}: ${providedValue.value}` }; }, [providedValue]); return /*#__PURE__*/(0, _jsxRuntime.jsx)(AnimatedTextInput, { underlineColorAndroid: "transparent", editable: false, value: `${text}: ${providedValue.value}`, style: style // @ts-ignore , animatedProps: animatedProps }); }; exports.ReText = ReText; //# sourceMappingURL=ReText.js.map