button double click for react-native
npm install double-click-react-native
// ...
import React from 'react'
import { View, Text } from 'react-native'
import DoubleClick from "double-click-react-native";
function App() {
return (
<DoubleClick
singleTap={() => {
console.log('single tap');
}}
doubleTap={() => {
console.log('double tap');
}}
delay={300}
style={{
backgroundColor: 'black',
}}
>
<Text>Click</Text>
</DoubleClick>
);
}
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT