Skip to content

Instantly share code, notes, and snippets.

@sjchmiela
Last active May 3, 2018 08:25
Show Gist options
  • Save sjchmiela/38dcb15b63cd01fe4f2c2dfcfed06cb8 to your computer and use it in GitHub Desktop.
Save sjchmiela/38dcb15b63cd01fe4f2c2dfcfed06cb8 to your computer and use it in GitHub Desktop.
render() {
return (
<View>
<TapGestureHandler
numberOfTaps={2}
onActivated={this.handlePictureDoubleTapped}>
<View>
<Image
style={styles.mainImage}
source={{ uri: this.props.photo.image_url }}
/>
{this.renderHeartAnimation()}
</View>
</TapGestureHandler>
{this.renderFooter()}
</View>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment