在React Native中保存并共享项目资产中的图像

时间:2018-04-10 08:50:02

标签: android ios react-native save share

是否可以将来自项目资源文件夹的图像保存在图库中和/或使用React Native中的Share api共享它? 如果不是可以在Android和iOS中本地执行它?

1 个答案:

答案 0 :(得分:1)

我建议您使用react-native-share库,因为React Native的共享库'功能有限,网址共享仅在IOS

中受支持

Here是可用的有用方法

  • 网址您想要分享的网址(您只能在iOS和Android中共享base64文件网址 // You need this one.

您可以直接通过base64file url分享

该示例使用起来非常简单

let shareImageBase64 = {
  title: "React Native",
  message: "Hola mundo",
  url: REACT_ICON,
  subject: "Share Link" //  for email
};

Share.open(shareImageBase64)