通过Gmail或WhatsApp共享PDF无效
这是用于响应本机共享的新组件
“ react-native-fetch-blob”:“ ^ 0.10.8”, “ react-native-share”:“ ^ 1.1.3”
onShare = async (pdf) => {
const shareOptions = { title: 'Share via', url: pdf };
try {
setTimeout(() => {
Share.open(shareOptions)
.catch(err => console.log(err));
}, 100);
} catch (e) {
this.props.AppStore.showAlert({ type: AlertType.REGULAR, title: i18n.t('t_moment'), content: e, buttonText: i18n.t('t_close') })
}
};
我希望通过whatsapp和gmail在IOS上共享pdf和图像文件, 它与mailto(ios)和消息共享。