是否可以将来自项目资源文件夹的图像保存在图库中和/或使用React Native中的Share api共享它? 如果不是可以在Android和iOS中本地执行它?
答案 0 :(得分:1)
我建议您使用react-native-share
库,因为React Native的共享库'功能有限,网址共享仅在IOS
Here是可用的有用方法
// You need this one.
该示例使用起来非常简单
let shareImageBase64 = {
title: "React Native",
message: "Hola mundo",
url: REACT_ICON,
subject: "Share Link" // for email
};
Share.open(shareImageBase64)