React Native hook for Share
yarn add @rnhooks/share
import useShare from '@rnhooks/share';
function App() {
const [onShare, shared, loading, error] = useShare();
return (
<View style={styles.container}>
<Text style={styles.welcome}>@rnhooks/share</Text>
<Button title="Share" onPress={onShare} />
{!(loading || error) && (
<Text style={styles.instructions}>{shared.toString()}</Text>
)}
</View>
);
}
Name | Default | Type | Description |
---|---|---|---|
onShare | () => {} |
function | Share Function |
shared | false |
boolean | Content is shared or not |
activity | null |
string | Get Shared Activity |
loading | false |
boolean | Loading State |
error | undefined |
boolean | Error State |