achorein / expo-share-intent

🚀 Simple share intent in an Expo Native Module
MIT License
177 stars 15 forks source link

feat: add resetOnBackground option #19

Closed achorein closed 6 months ago

achorein commented 6 months ago

Summary

After a share intent, by default when the app is going into background the share intent is reset.

This PR add the possibility to disable this behaviour

const { shareIntent } = useShareIntent({ resetOnBackground: false });

Todo