TouchableRipple
A wrapper for views that should respond to touches. Provides a material "ink ripple" interaction effect for supported platforms (>= Android Lollipop). On unsupported platforms, it falls back to a highlight effect.
Usage
import * as React from 'react';
import { View } from 'react-native';
import { Text, TouchableRipple } from 'react-native-paper';
const MyComponent = () => (
<TouchableRipple
onPress={() => console.log('Pressed')}
rippleColor="rgba(0, 0, 0, .32)"
>
<Text>Press me</Text>
</TouchableRipple>
);
Props
background
Type:
Object
Type of background drawabale to display the feedback. https://facebook.github.io/react-native/docs/touchablenativefeedback.html#background
onPress
Type:
Function
Function to execute on press. If not set, will cause the touchable to be disabled.
style
Type:
any
Static properties
supported
Whether ripple effect is supported.