Last active
May 3, 2018 08:25
-
-
Save sjchmiela/38dcb15b63cd01fe4f2c2dfcfed06cb8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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