react-native-double-tap-without-opacity
v2.0.1
Published
A react-native-package for double tap without opacity to produce like effects like instagram
Downloads
2
Maintainers
Readme
react-native-double-tap
A wrapper component for React Native which supports both double and single tap. Works on both Android and iOS.
Installation
npm install --save react-native-double-tap-without-opacity
Usage
import DoubleClick from "react-native-double-tap-without-opacity"
export default class App extends React.Component {
render() {
return (
<View style={styles.container}>
<DoubleClick
singleTap={() => {
console.log("single tap");
}}
doubleTap={() => {
console.log("double tap");
}}
delay={200}
>
<Text>Tap me 2 times for log </Text>
</DoubleClick>
</View>
);
}
}
Props
| Property | Type | Default | Description | | --------- | -------- | ------- | ----------------------------- | | delay | number | 200 | Time for delay between taps | | singleTap | function | null | callback for single tap event | | doubleTap | function | null | callback for double tap event |
License
MIT