Expo
Create
Log in / Sign up
Roadmap
Feature Requests
Voters
Ahmet Kilinc
P
Philip Lindberg
Yonatan
V
Victor
C
C.T. Bell
Łukasz Kurpiewski
sanket patel
Alin Chiosa
Connor Osborn
Awce
and 564 more...
Powered by Canny
574
Share Extension (iOS) & Share Intent (Android)
Rufat (@rufat)
We need this feature for both of the platforms. This is an essential feature. Expo must add this to its' built-in modules: https://github.com/alinz/react-native-share-extension
[1] https://developer.android.com/training/sharing/send
[2] https://developer.apple.com/library/archive/documentation/General/Conceptual/ExtensibilityPG/Share.html#//apple_ref/doc/uid/TP40014214-CH12-SW1
November 7, 2019
Activity Feed
Sort by
E
Etienne Cunin
Hello there,
I open sourced the code developed for my company that does some things about this.
It is an expo plugin that enables the share extension for iOS only, and you still have to write the extension by yourself (I added an example).
Here are the links:
https://github.com/BreckoEC/share-extension-expo-plugin
https://github.com/BreckoEC/share-extension-expo-example
·
March 8, 2023
·
Reply
P
Philip
I've had some luck (still WIP, Android only for now) with https://github.com/meedan/react-native-share-menu. Followed instructions in the repo for installation, skipped recommended part with
share.js
and plugged share listener in the root App component directly
import ShareMenuAPI, { ShareListener, ShareData } from "react-native-share-menu";
const App = () => {
React.useEffect(() => {
let sub: ShareListener | null = null;
ShareMenuAPI.getInitialShare((d) => {
logShareData(d);
sub = ShareMenuAPI.addNewShareListener((newShare) => {
logShareData(newShare);
});
});
return () => {
if (sub) {
sub.remove();
}
};
}, []);
return ...
}
·
March 7, 2023
·
Reply
Yonatan
Philip: Nice
·
March 19, 2023
·
Reply
Charles de Dreuille
I believe it's now possible with Expo Modules but it's up to someone who knows Swift (Not my case) to create the necessary plugin. I found this team on Discord who might have a solution they could potentially open source.
https://discord.com/channels/695411232856997968/1009056414028812299/1075200153071399074
·
February 17, 2023
·
Reply
М
Максим Мартынов
Really need this feature
·
February 15, 2023
·
Reply
m
magoz
Any updates?
·
January 23, 2023
·
Reply
Valerius
Are there any updates? The feature request is open for like 4 years by now :D
·
January 6, 2023
·
Reply
hawei
How's going on ? my app need this feature
·
December 17, 2022
·
Reply
Vlad Apostol
Really looking forward to this feature!
·
November 29, 2022
·
Reply
Paul Woods
OMG! Would LOVE this feature not only with files, text, etc. But with location links too! For example from google or apple maps... I hate how apple done it with info.plist
·
November 27, 2022
·
Reply
Daniel
I hope we get some news on this soon. This is really crucial to us.
·
November 16, 2022
·
Reply
Load More
→
Powered by Canny