implements a look and feel for Touchables in React Native. It display material design ripples on Android, and Opacity effect on iOS.
this Touchable isn't native, it's a fork of react-native-material-ripple by @n4kz
npm i -s native-touchable
import Touchable from 'native-touchable'
render () {
return (
<View>
<Touchable onPress={ ... }>
<Text>Do something!</Text>
</Touchable>
</View>
)
}This component inherits from TouchableOpacity and can use all his props (onPress, onPressIn, activeOpacity, etc.), btw can use all props from @n4kz/react-native-material-ripple too. But I decide to rename some props just for confortability.

