import React from 'react'; import PropTypes from 'prop-types'; import { Pressable } from 'react-native'; import { themes } from '../constants/colors'; class Touch extends React.Component { setNativeProps(props) { this.ref.setNativeProps(props); } getRef = (ref) => { this.ref = ref; }; render() { const { children, onPress, onLongPress, theme, style, ...props } = this.props; return ( {children} ); } } Touch.propTypes = { children: PropTypes.node, onPress: PropTypes.func, onLongPress: PropTypes.func, theme: PropTypes.string, underlayColor: PropTypes.string, style: PropTypes.object }; export default Touch;