Reputation: 7879
Is there a way to preview a local (to the device) Office document (Word, PowerPoint etc.) inside a React Native app using an SDK or library?
I've used react-native-quick-look to take advantage of the quick look framework on iOS, but I'd like to know if anyone has come across anything similar on Android.
Upvotes: 1
Views: 2152
Reputation: 20785
It seems that nobody hasn't, according to this question Android version of iOS Quick Look Framework
But you can try to send an implicit intent so that the user can choose the app to see the document.
https://www.npmjs.com/package/react-native-intent
Upvotes: 1