CRUD Tutorial Using React Native + Firebase | Firebase Firestore Tutorial | Expo

Поділитися
Вставка
  • Опубліковано 1 лис 2024

КОМЕНТАРІ • 32

  • @bugman10
    @bugman10 Рік тому +1

    Greetings from Brazil! Thank you for this video, man. Your english accent is great to understand and you go directly to the point.

  • @Morph0is
    @Morph0is 10 місяців тому

    thaanls bro, i was struggeling the last 2 days to manage what you just did. And it works fine now in my project. keep going man!!

  • @a13Banger
    @a13Banger 2 роки тому

    Great video. I have been a Ruby developer for the last few years and use ReactJS often. I came here seeking this exact info because I am about to start a new project at the company i work for and we decided on React Native + Firebase so this video was awesome and well done. It is exactly the info I was looking for.

    • @InfoTechWAR
      @InfoTechWAR  2 роки тому

      Thanks for the comment 😍😍 good luck on your project !

  • @learncodeinbangla9181
    @learncodeinbangla9181 2 роки тому +1

    Thanks a lot, it's very helpful for me.

    • @InfoTechWAR
      @InfoTechWAR  2 роки тому +1

      You are most welcome

    • @int0therain44
      @int0therain44 Рік тому

      @@InfoTechWAR Very clear video. Keep up the excellent work!

  • @Greycode_01
    @Greycode_01 Рік тому

    thanks a lot this video very clear steps to follow.

  • @johncmm9759
    @johncmm9759 2 роки тому

    Fantastic. Thank you very much!

  • @SeedhibtNoBakwas
    @SeedhibtNoBakwas Рік тому

    Expected first argument to collection() to be a CollectionReference .....bro resolve this error please

  • @yunielp.turruellas4935
    @yunielp.turruellas4935 2 роки тому

    Una pregunta, estoy tratando de subir una imagen al cloud y me da este error,
    [Error: [storage/object-not-found] No object exists at the desired reference.]
    WARN Possible Unhandled Promise Rejection (id: 8):
    Error: [storage/object-not-found] No object exists at the desired reference.
    NativeFirebaseError: [storage/object-not-found] No object exists at the desired reference.

  • @pushpakrawat532
    @pushpakrawat532 Рік тому

    nice show bro! 👌

  • @robertasaservice
    @robertasaservice 2 роки тому +1

    Hi very nice sir, can you also show how to fetch that submitted data and display it below? Or in a flatlist? That's be amazing!!!

    • @InfoTechWAR
      @InfoTechWAR  2 роки тому +1

      Thanks for the suggestion. I will do next time. If you need more tutorials on firebase, follow my Firebase playlist

    • @robertasaservice
      @robertasaservice 2 роки тому

      @@InfoTechWAR Thanks will do!

  • @midnighttfoxx
    @midnighttfoxx 2 роки тому

    I've run into this error:
    TypeError: (0, _firestore.doc) is not a function.
    I'm using firebase version 8.10.1 and did not follow your firebase setup perfectly as it would break other parts of my app. Do you know how to fix this

    • @InfoTechWAR
      @InfoTechWAR  2 роки тому

      I think you didn’t import some firebase objects. Check it clearly or go to the website link in the description below and copy and paste my code

  • @sudharakafernando4391
    @sudharakafernando4391 Рік тому

    Thank you !!!

  • @ubmelearning1603
    @ubmelearning1603 2 роки тому

    Very nice.. thank you

  • @deowehrmacht
    @deowehrmacht 2 роки тому +1

    Hello, I have this problem "@firebase/firestore: Firestore (9.6.11): Connection WebChannel transport errored" I use version 9.6.11, do you know how to solve?
    Very nice content btw easy to understand

    • @InfoTechWAR
      @InfoTechWAR  2 роки тому +1

      Hi. I think there is a problem with firebase connection. If that error is still there follow my code in the website. you can find the code in the description below

    • @deowehrmacht
      @deowehrmacht 2 роки тому

      @@InfoTechWAR Can I see your firestore ruless?

    • @InfoTechWAR
      @InfoTechWAR  2 роки тому +1

      ​@@deowehrmacht it is something like this
      rules_version = '2';
      service cloud.firestore {
      match /databases/{database}/documents {
      match /{document=**} {
      allow read, write: if
      request.time < timestamp.date(2022, 5, 17);
      }
      }
      }

    • @deowehrmacht
      @deowehrmacht 2 роки тому

      @@InfoTechWAR I downgraded to ver 8.8.1 and tried realtime database it works but still not with firestore, thanks though

    • @InfoTechWAR
      @InfoTechWAR  2 роки тому

      @@deowehrmacht check you are importing all the objects. if it is working with Realtime database, this should be work. There may be a simple error somewhere. try with a new project. start back in the beginning