2

I want to display pictures in my react native app, but only know how to show the pictures from other url's but don't know how can I show the images from the drive in my app,

  <Image
      style={{width:50, height: 50}}
      source={{uri: 'https://facebook.github.io/react-native/img/tiny_logo.png'}}
   />

Above code displays the picture from the link but how can I display the pictures which are in google drive? tried giving sharable links as uri but no use.

Thanks in advance.

Deepak N
  • 1,408
  • 3
  • 15
  • 37

1 Answers1

-4
  1. Shift + ctrl + I while preview of image opened on Google Drive page.
  2. Shift + ctrl + c and click on the image
  3. Copy the URL in the inspection panel and put it as a source
double-beep
  • 5,031
  • 17
  • 33
  • 41
Bart
  • 1