Share
import React from "react";
import { Share, View, Button } from "react-native";
export default function ShareExample() {
const onShare = async () => {
try {
const result = await Share.share({
message:
"React Native | A framework for building native apps using React",
});
if (result.action === Share.sharedAction) {
if (result.activityType) {
} else {
}
} else if (result.action === Share.dismissedAction) {
}
} catch (error) {
alert(error.message);
}
};
return (
<View style={{ marginTop: 50 }}>
<Button onPress={onShare} title="Share" />
</View>
);
};
Reference
static share(content, options)
Open a dialog to share text content.
In iOS, returns a Promise which will be invoked with an object containing action
and activityType
. If the user dismissed the dialog, the Promise will still be resolved with action being Share.dismissedAction
and all the other keys being undefined. Note that some share options will not appear or work on the iOS simulator.
In Android, returns a Promise which will always be resolved with action being Share.sharedAction
.
message
- a message to share
At least one of URL and message is required.
title
- title of the message
subject
- a subject to share via emailexcludedActivityTypes
tintColor
static sharedAction()
The content was successfully shared.
static dismissedAction()
iOS-only. The dialog has been dismissed.