react-native-hooks / share

React Native Hook for Share

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

@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

License:MIT License


Languages

Language:JavaScript 43.5%Language:Objective-C 30.7%Language:Python 15.3%Language:Java 10.4%