React Native + Expo : save pdf/word doc from url. How to Open the file in a different app ?

I have created app in which I can download files from server, but how to open using In another application which is installed in device.

FileSystem.downloadAsync(
The Global Alliance on Health and Pollution (GAHP)’,
FileSystem.documentDirectory + ‘small.pdf’
)
.then(({ uri }) => {
console.log('Finished downloading to ', uri);
})
.catch(error => {
console.error(error);
});

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.