Firebase with Flutter | Ep. 3 - Cloud Firestore | Part 1 - Basic CRUD and StreamBuilder | Hindi

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

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

  • @monkzone8605
    @monkzone8605 2 года назад +7

    If you read the comments, you will know that Rohit is a great teacher..... Those who watched at least one video of Rohit sir, became his fan.... Waiting for your Project series....

    • @RohitSemriwal
      @RohitSemriwal  2 года назад +2

      Means a lot, I'll keep making content to help you guys 😁🙌

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

      @@RohitSemriwal Sir many of us are preparing for placement, before August we need a project,... If you start the project it will be helpful for us

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

      @@monkzone8605 The firebase series will finish next week most probably, then we can start the ecommerce app 😁

  • @mohammadasimjan8708
    @mohammadasimjan8708 7 месяцев назад +1

    You have really unique grasp on everything, i never got bored from your lecture. You have special teaching skills. Respect from Pakistan! Thank you.

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

    Thanks Rohit Sir ! You explain everything in a simple way which helps beginners to understand very easily.

  • @sagarshah5341
    @sagarshah5341 5 месяцев назад

    This playlist is too underrated!

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

    Awesome.. simply a Fantastic video.. keep it up bro..

  • @emondas31
    @emondas31 2 года назад +2

    waiting for app series ❤️

  • @Khartarnak_Coder
    @Khartarnak_Coder 6 месяцев назад

    what is the name of the theme you are using?

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

    Awesome content brother

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

    Mast explanation

  • @reelsmahic999
    @reelsmahic999 2 года назад +1

    Thanks You Sir! sir mera ek question hy , sir agar hum ek specific doc m ek specific field ko delete krna chahy tu wo ks trah hoga?

    • @RohitSemriwal
      @RohitSemriwal  2 года назад +1

      Just use the .set() function to write to the document. It'll automatically delete any field that's not in the map.

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

      @@RohitSemriwal Ok Sir Thank You.

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

    Sir kindly ek video github p b bna dy details m k hum apna project kesy upload kr skty hy github p command k through.
    BTW Sir js trah app ne content upload kia hy mny aaj tk is trah content nai deka ksi or channel p BIG RESPECT & LOVE

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

    Please make some video on state management in flutter like provider , riverpod

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

      I already did a video on Provider and a series on BLoC. You can see it on my channel.

  • @chandangupta3811
    @chandangupta3811 Год назад +1

    Sir delete kaise karenge document ko jo hum snapshot se show kra rahe hai?

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

    U r awesome sir

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

    Love ❤ 😍

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

    great tech

  • @awaisanees4352
    @awaisanees4352 10 месяцев назад

    log command is not recognize in our project??

  • @KamalVerma-wv1bg
    @KamalVerma-wv1bg 2 года назад

    Great videos, though i am watching your videos in 2x and i will watch your videos in 2.5x as well if youtube provide

  • @jco-gaming
    @jco-gaming 2 года назад

    😇😇awesome

    • @RohitSemriwal
      @RohitSemriwal  2 года назад +1

      Glad you like it! 😁

    • @jco-gaming
      @jco-gaming 2 года назад

      @@RohitSemriwal yes sir mujhe apki sari video bahut achi lgi apne har ek topic ko bahuy details me explain kiya hai

  • @harpaldabhi4869
    @harpaldabhi4869 Год назад +1

    👍👍

  • @17Shubham
    @17Shubham 2 года назад

    maja a gaya👌🖤🖤

  • @motivationtodosomething3696
    @motivationtodosomething3696 11 месяцев назад

    Sir CURD opration ko modal aur cubit se kaise kare

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

    Sir kia hum ek sath sary doc ko delete kr skty delete() function ka use kr k ? wesy to hum ek doc ki specfic id de k pr delete
    function call krty sir agr saro krna ho tu kesy karyngy ?

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

      You'll have to use a loop to delete the documents one by one. Firebase doesn't support deleting collections for now.

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

      @@RohitSemriwal Got it!

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

      @@RohitSemriwal
      QuerySnapshot snapshot = await FirebaseFirestore.instance.collection('Users').get();
      for (var docs in snapshot.docs) {
      docs.reference.delete();
      log(' All Docs Deleted!');
      }

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

    sir ,userMap ko use krty huye picture kese nikalengy jo firestore ki database me as a string rakhi hui ha?

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

      Check out the Firebase Storage episode.

  • @karanrocks4447
    @karanrocks4447 2 года назад +1

    27:52.. Can we make this await?

    • @RohitSemriwal
      @RohitSemriwal  2 года назад +1

      Yeah sure, but keep in mind that writing await will wait for the process to complete.
      In case the internet is not working you'll be stuck in one place.
      Not writing await will save the data in the local storage if the need be.

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

      @@RohitSemriwal ok.. Thanks.. Understood 🙂

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

    Nice video

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

    Flutter me Advance concept ki list?????

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

    You and eror enhance my knowledge

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

    sir, firebase se dekhy bagher document id kese pta kr skty ha?

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

      It is inside of the DocumentSnapshot.
      Inside a QuerySnapshot: snapshot.docs[index].id
      Inside a DocumentSnapshot:
      docSnap.id

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

      if you figure out how it is solved can you share code !
      i am also having problem with it

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

    Sir maine ap chat app complete Kiya hai iss liye firebase series mey karne ka man nahi lakta, clone app projects suru Karo na nodejs, mongodb, flutter ka,, please 🙏🙏❤️

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

      Soon! You already did the Chat App but many people haven't, I have to take care of everyone. This will end next week then we'll start the ecommerce app 😁

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

      @@RohitSemriwal thank you sir ♥️ god bless you 🙏🙏🙏

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

    Waiting for e-commerce projects

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

    Sir how to update in real time ?

    • @RohitSemriwal
      @RohitSemriwal  2 года назад +1

      Use a StreamBuilder, see 30:51 😁

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

    👏👍

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

    App design series from. Scratch

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

    waiting for project

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

    💙💙💙💙💙

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

    id ko kese select karna hy

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

      You can select a document's id this way:
      Let's say `snapshot` is the QuerySnapshot we get after calling get() on a collection.
      You can do - snapshot.docs[index].id

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

    sir delete kese karna hy

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

      Just select a document and call the delete() function...
      Example:
      FirebaseFirestore.instance.collection('users').doc('user-id-here').delete();

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

      how do i pass the user id?@@RohitSemriwal

  • @fatshaddy-rz2wn
    @fatshaddy-rz2wn 11 месяцев назад

    bezati nahi honi chaiye

  • @nikhilgoyner7676
    @nikhilgoyner7676 2 года назад +2

    Thanks Rohit Sir ! You explain everything in a simple way which helps beginners to understand very easily.