Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

open screen pdf on google drive react native expo

import * as FileSystem from 'expo-file-system';
import * as IntentLauncher from 'expo-intent-launcher';

try {

  const cUri = await FileSystem.getContentUriAsync(uri);
             
  await IntentLauncher.startActivityAsync("android.intent.action.VIEW", {
      data: cUri,
      flags: 1,
      type: "application/pdf",
  });
}catch(e){
    console.log(e.message);
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #open #screen #pdf #google #drive #react #native #expo
ADD COMMENT
Topic
Name
4+7 =