Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

react-native-wm-share

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-wm-share

Share pictures or graphic links using system sharing.

latest
npmnpm
Version
1.0.4
Version published
Weekly downloads
15
1400%
Maintainers
1
Weekly downloads
 
Created
Source

Npm Install

$ npm install --save react-native-wm-share
$ 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.图片分享默认描述文本)
        

Keywords

react-naitve

FAQs

Package last updated on 04 Feb 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts