React Native Firebase Storage Tutorial for Storing Photos

Поделиться
HTML-код
  • Опубликовано: 31 дек 2024

Комментарии • 61

  • @miguelsinmas502
    @miguelsinmas502 3 года назад

    Congratulations
    Another great video, we almost have the application finished to publish it
    Thanks for sharing your knowledge.

  • @erhankaratas14
    @erhankaratas14 Год назад

    thank you so much. my problem solved and i learned so much thing from this video

  • @unknownman1
    @unknownman1 4 года назад +2

    Thank you very much for these videos.

    • @itzpradip
      @itzpradip  4 года назад +1

      Glad you like them!

  • @ukanahdean9701
    @ukanahdean9701 2 года назад

    Nice one bro!! Keep Up the Work

  • @arrowfunction3200
    @arrowfunction3200 4 года назад +2

    thank you so much keep going for backend we love you and react native

  • @bluekeny
    @bluekeny 4 года назад +1

    Thank u. Great job. Love to see how to download all photos back to device and display them.

    • @itzpradip
      @itzpradip  4 года назад

      Sure thing!

    • @ansdyi
      @ansdyi 4 года назад

      yess. i come back here like every day waiting for the video up about how to download all photos back:(

  • @oskarilehtonen9917
    @oskarilehtonen9917 4 года назад +3

    Awesome content! Thanks.
    I have one question.
    Is every user using the same storage? Or is every user getting their own storage while using the app. How can I know which user uploaded witch photo?

  • @moglielyrics9087
    @moglielyrics9087 3 года назад +2

    hey, thanks for the video tutorial. i just want to ask how about if you want to change/replace
    the existing photos?

  • @brucewayne_007
    @brucewayne_007 3 года назад +1

    just AWESOME

  • @rajanayel7447
    @rajanayel7447 3 года назад +1

    Dada I'm facing this issue.
    TypeError: null is not an object (evaluating '_reactNativeImageCropPicker.default.openPicker')

  • @ananthapadmanabhans8165
    @ananthapadmanabhans8165 4 года назад +8

    How can we get the uploaded image url so that we can store it in our database? Can you please share any reference links for that? Thanks

    • @IshanAnuradha93
      @IshanAnuradha93 3 года назад

      Just use this. :)
      const url = await storage().ref('images/profile-1.png').getDownloadURL();

  • @PavanKumar-lz5ok
    @PavanKumar-lz5ok 4 года назад +4

    Please show how to link to payment gateway with react native

    • @itzpradip
      @itzpradip  4 года назад +1

      Noted. Thanks for your suggestion.

  • @natarajanraju4198
    @natarajanraju4198 3 года назад

    Forgot password button functionality not added in the previous sessions.. Will it be added in the upcoming sessions?

  • @arshiyanaz2675
    @arshiyanaz2675 3 года назад

    may i know why my app changes reflects slowly in android emulator

  • @ScoreMatch_099
    @ScoreMatch_099 3 года назад +1

    WARN Possible Unhandled Promise Rejection (id: 0):
    TypeError: null is not an object (evaluating 'uploadUri.substring')
    getting this error in uploadUri.substring. Can someone help?

    • @TheAdel136
      @TheAdel136 3 года назад

      in your const [image,setImage]=useState(null) remove the null and replace it with empty ( ) and make sure that you are using async and await in the right place

  • @droidxxi
    @droidxxi 4 года назад +1

    Sir, will you create "Add friend" function? And private message function?

  • @santhoshsuriya8640
    @santhoshsuriya8640 3 года назад

    While upload facing issue
    NativeFirebaseError: [storage/unauthorized] User is not authorized to perform the desired action.

  • @Jeff-zc6rr
    @Jeff-zc6rr 2 года назад

    does putFile even work in 2022? It's nowhere in the documentation. what about uploadBytes or uploadBytesResumable?

  • @SportSHorts73
    @SportSHorts73 2 года назад

    how can we store audio files pls let me know

  • @technicalchachaji9728
    @technicalchachaji9728 3 года назад

    hello sir,
    sir i m getting null value on uploading image to firestore, so plz help me how to resolve these null value

  • @unknownman1
    @unknownman1 4 года назад +2

    Can you make something similar to this but we can add different frames and filters to our photos. Is it possible in react native?

  • @educationchannel8266
    @educationchannel8266 Год назад

    Uploading the images from the sourceURL resulted in an unknown error for me (ios, error only occurred on physical device and not in simulator), spend 2 days trying to fix it. You should set imageUri to image.path on ios too instead of only on android. sourceURL will only work in simulator and is de url to the original image, not to the cropped temporary stored version.

  • @Marshal-786
    @Marshal-786 4 года назад +2

    please make more tutorial on react native cli

  • @alkesh.jethava
    @alkesh.jethava 4 года назад

    Sir please make video on push notifications,
    Your videos are awesome ❤️❤️🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥
    Thank you so much❤️

  • @tucel
    @tucel 3 года назад

    We are waiting for a video explaining the multiple image uploads.Thanks.

    • @mammothoff
      @mammothoff 3 года назад

      you welcome
      ```
      const uploadedPhotos = await Promise.all(
      filePath.map(async (photo) => {
      const photoUploadUri: string = photo?.uri;
      const fileName: string = photo?.fileName;
      const photoToUpload: any = storage().ref(fileName);
      const uploadPhoto = storage().ref(fileName).putFile(photoUploadUri);
      // *Uploading photo
      try {
      await uploadPhoto;
      const downloadLink = await photoToUpload.getDownloadURL();
      return downloadLink;
      } catch (err) {
      console.log(err);
      }
      }),
      );
      setDownloadURL(uploadedPhotos);
      ```

  • @sadiqrauf1371
    @sadiqrauf1371 4 года назад +2

    Hello sir,
    Can you make a video on how to download photos back...like when we create a poetry type app...and sir, is this possible without Firebase..

  • @shoaibreactnative4739
    @shoaibreactnative4739 2 года назад

    not working for me when installing storage build not building
    I am using ios

  • @barsarbro4610
    @barsarbro4610 3 года назад

    how to grab these image back

  • @prabhatkantipandit9801
    @prabhatkantipandit9801 2 года назад

    Hi, i am facing this issue after completing installation fatal error: 'FirebaseStorage/FirebaseStorage-Swift.h' file not found #import
    ...please help

    • @matteolore8157
      @matteolore8157 2 года назад

      i have the exact same issue, did you solve it ?

  • @susuhabibi
    @susuhabibi 3 года назад

    please do a video on how to retrieve multiple images from a folder firebase storage

    • @mammothoff
      @mammothoff 3 года назад

      in case you still looking for solution :
      const uploadedPhotos = await Promise.all(
      filePath.map(async (photo) => {
      const photoUploadUri: string = photo?.uri;
      const fileName: string = photo?.fileName;
      const photoToUpload: any = storage().ref(fileName);
      const uploadPhoto = storage().ref(fileName).putFile(photoUploadUri);
      // *Uploading photo
      try {
      await uploadPhoto;
      const downloadLink = await photoToUpload.getDownloadURL();
      return downloadLink;
      } catch (err) {
      console.log(err);
      }
      }),
      );
      setDownloadURL(uploadedPhotos);

  • @ryanpascual9614
    @ryanpascual9614 2 года назад

    how about getDownloadurl?

  • @sayedAsif100
    @sayedAsif100 4 года назад

    It will be nice if you cover liquid, fluid or share element transition

  • @walterwhite7167
    @walterwhite7167 2 года назад

    thanks man

  • @hyacinch2219
    @hyacinch2219 3 года назад

    I'm new to react native.Which sdk this guy using to develop the app.I only know expo.cli and is there any else?

    • @ThinkThis.
      @ThinkThis. 3 года назад

      expo is good for start,, you can see your app changes in real time but when you complete building work then make the same app in react native cli, search more about it you will get your ans.
      but just remember dont make final app in expo cli it very slow

  • @ashikhp1675
    @ashikhp1675 4 года назад

    Bro, can you please make a video of chat App Ui on react native?

  • @ppsdeveloper9448
    @ppsdeveloper9448 4 года назад

    thank you

  • @furkanturkylmaz8385
    @furkanturkylmaz8385 4 года назад

    thank bro

  • @gamesforlike707
    @gamesforlike707 Год назад

    bro how to chat using firebase in react native + gifted chat tutorial video

  • @ansdyi
    @ansdyi 4 года назад

    sir can you do the video about how to display the photos:(

    • @aviseksahoo1953
      @aviseksahoo1953 4 года назад

      have you done it ?

    • @ansdyi
      @ansdyi 4 года назад

      @@aviseksahoo1953 oh me? not yet. still working on it. and still waiting mr. pradip uploaded video about it

    • @aviseksahoo1953
      @aviseksahoo1953 4 года назад

      @@ansdyi oh please send the source code if u will do it

  • @upospos
    @upospos 3 года назад

    Good video

  • @revanthrev23
    @revanthrev23 3 года назад

    hey

  • @revanthrev23
    @revanthrev23 3 года назад

    hi