@rnhooks/share
v0.0.2
Published
React Native Hook for Share
Downloads
6
Readme
@rnhooks/share

React Native hook for Share
Installation
yarn add @rnhooks/shareUsage
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>
);
}
Output
| 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 |