React native 我只想在Facebook和WhatsApp上分享一篇帖子

React native 我只想在Facebook和WhatsApp上分享一篇帖子,react-native,React Native,有没有办法限制世博会社交媒体上的共享平台,例如,我只想共享一个Facebook和WhatsApp,不在对话框中显示其他平台 以下是链接:- 这些可以通过使用共享社会财产来评估 import Share from 'react-native-share'; const shareOptions = { title: 'Share via', message: 'some message', url: 'some share url', social: Share.

有没有办法限制世博会社交媒体上的共享平台,例如,我只想共享一个Facebook和WhatsApp,不在对话框中显示其他平台 以下是链接:-

这些可以通过使用共享社会财产来评估

import Share from 'react-native-share';

const shareOptions = {
    title: 'Share via',
    message: 'some message',
    url: 'some share url',
    social: Share.Social.WHATSAPP,
    whatsAppNumber: "9199999999",  // country code + phone number(currently only works             on Android)
    filename: 'test' , // only for base64 file in Android 
};
Share.shareSingle(shareOptions);
如果你有任何问题,请随时问我

非常感谢。