UNPKG

react-native-tab-view

Version:
39 lines (38 loc) 1.49 kB
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } import * as React from 'react'; import { Platform, Pressable } from 'react-native'; const ANDROID_VERSION_LOLLIPOP = 21; const ANDROID_SUPPORTS_RIPPLE = Platform.OS === 'android' && Platform.Version >= ANDROID_VERSION_LOLLIPOP; /** * PlatformPressable provides an abstraction on top of TouchableNativeFeedback and * TouchableOpacity to handle platform differences. * * On Android, you can pass the props of TouchableNativeFeedback. * On other platforms, you can pass the props of TouchableOpacity. */ export function PlatformPressable(_ref) { let { android_ripple, pressColor = 'rgba(0, 0, 0, .32)', pressOpacity, style, ...rest } = _ref; return /*#__PURE__*/React.createElement(Pressable, _extends({ android_ripple: ANDROID_SUPPORTS_RIPPLE ? { color: pressColor, ...android_ripple } : undefined, style: _ref2 => { let { pressed } = _ref2; return [{ opacity: pressed && !ANDROID_SUPPORTS_RIPPLE ? pressOpacity : 1 }, typeof style === 'function' ? style({ pressed }) : style]; } }, rest)); } //# sourceMappingURL=PlatformPressable.js.map