Skip to content

Instantly share code, notes, and snippets.

View h-marvin's full-sized avatar

Marvin Hoffmann h-marvin

  • Adobe
  • Hamburg, Germany
View GitHub Profile
@mrzmyr
mrzmyr / index.js
Created November 22, 2015 16:56
React Native - Detect Double Tap
var Index = React.createClass({
getInitialState: function () {
return {
lastPress: 0
}
},
onPress: function () {
var delta = new Date().getTime() - this.state.lastPress;