@wanmi/react-native-share

Share pictures or graphic links using system sharing.

Usage no npm install needed!

<script type="module">
  import wanmiReactNativeShare from 'https://cdn.skypack.dev/@wanmi/react-native-share';
</script>

README

Npm Install

$ npm install --save react-native-wm-share

Automatically Link

$ react-native link react-native-wm-share

Use


import React, { Component } from 'react';
import {
    Platform,
    StyleSheet,
    Text,
    View,
    TouchableOpacity
} from 'react-native';

import { share } from 'react-native-wm-share'

export default class App extends Component<Props> {
render() {
    return (
        <View style={styles.container}>
            <TouchableOpacity style={{height:60,width:100,backgroundColor:'red'}}
                              onPress={()=>share(options,callbake)}>
            </TouchableOpacity>
        </View>
        );
    }
}

Parameters

iOS


share方法有以下参数:
options: 分享的数据. 包含四个字段.
        title(String. 标题)
        url(String. 链接)
        remoteImages(Array. 远程图片url数组)
        localImages(Array. 本地图片路径数组)
callbake:  分享完成的回调. 返回true(分享成功)或false(分享失败)

Android


share方法有以下参数:
options: 分享的数据. 包含四个字段.
        title(String.纯文本分享)
        remoteImages(Array. 远程图片url数组)
        localImages(Array. 本地图片路径数组)
        description(String.图片分享默认描述文本)