Skip to content

Instantly share code, notes, and snippets.

View Aprisyta's full-sized avatar

Aprishyta Nayak Aprisyta

  • Masters Candidate, Computer Science
  • University at Buffalo, United States
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;