Skip to content

Instantly share code, notes, and snippets.

@sjchmiela
Last active May 3, 2018 09:30
Show Gist options
  • Save sjchmiela/035358a7b18d17f7c12cf2f90b3ab836 to your computer and use it in GitHub Desktop.
Save sjchmiela/035358a7b18d17f7c12cf2f90b3ab836 to your computer and use it in GitHub Desktop.
<View
style={{
padding: 10,
alignItems: 'center',
flexDirection: 'row',
justifyContent: 'space-between',
}}>
<Text>{this.props.photo.device.name}</Text>
<TouchableOpacity
onPress={() =>
Share.share({
url: this.props.photo.image_url,
message: this.props.photo.image_url,
})}>
<Ionicons name="md-share" size={32} />
</TouchableOpacity>
</View>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment