i'm using the Share component in order to share some data to social medias but i don't know to how to share an image like the vinted app (cf image). 
onShare = async () => {
try {
const result = await Share.share({
title: "Mariez-Vous",
message:
`Photo partagée : ${this.props.navigation.state.params.photo}
Nom : ${this.props.navigation.state.params.societe}
Site web : https://www.mariezvous.fr/`,
});
if (result.action === Share.sharedAction) {
if (result.activityType) {
// shared with activity type of result.activityType
} else {
// shared
}
} else if (result.action === Share.dismissedAction) {
// dismissed
}
} catch (error) {
alert(error.message);
}
};
Here is the code that I'm using but the image is not displaying it's only passing an url.
