Skip to content

react-native-hooks/share

Repository files navigation

@rnhooks/share Build Status Maintainability

React Native hook for Share

Installation

yarn add @rnhooks/share

Usage

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

About

React Native Hook for Share

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published