UNPKG

@toxclient/shathui

Version:

Platform-agnostic Chat UI components for The Universal Tox Client.

17 lines (13 loc) 402 B
import { TouchableNativeFeedback, Platform } from 'react-native'; import PropTypes from 'prop-types'; import TouchableRipple from 'react-native-material-ripple'; const Touchable = Platform.select({ ios: TouchableRipple, android: TouchableNativeFeedback, windows: TouchableRipple, web: TouchableRipple }); Touchable.propTypes = { children: PropTypes.isRequired }; export default Touchable;