9
votes

I'm looking for a solution to social media share on Expo. I have tried with react-native-social-share from npm but it doesn't work on Expo. Is there any way to do it?

Thanks

2
you have to detach to ExpoKit to use the native library. - Roy Wang

2 Answers

1
votes

You can use the default share solution from React Native described here: https://facebook.github.io/react-native/docs/share.html#docsNav

0
votes

You need to use

https://facebook.github.io/react-native/docs/share.html

as any other solution requires you to detach your Expo project to regular project as linking is required (e.g. https://github.com/react-native-community/react-native-share ) - I'm not entirely sure if there is a solution that comes with all basic social shares without native code (I believe there is none)