Firebase RealTime Database (CRUD) | Flutter Firebase Tutorial #3

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

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

  • @haritsraihan151
    @haritsraihan151 Год назад +4

    Bro, the get() you said in the video is to read all the data in one child, how can I read from one child that have two data and I want retrieve the data separately?

    • @haritsraihan151
      @haritsraihan151 Год назад +2

      Problem solved
      DatabaseReference dbref = FirebaseDatabase.instance.ref().child('data');
      final ph = await dbref.child('ph').get();
      final salinity = await dbref.child('conductivity').get();
      setState(() {
      _salinity = salinity.value.toString();
      _pH = ph.value.toString();
      print("ph: " + ph.value.toString());
      print("salinity: " + salinity.value.toString());
      });

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

      how can i listen in realtime, not just once for changes in data with multiple children

  • @mwgmlg5600
    @mwgmlg5600 Год назад +3

    My man is sick
    Dude so much helping, thanks for the knowledge bro
    now I can sleep in peace🥰👍

  • @akr28038
    @akr28038 Год назад +3

    Awesome tutorial man!...it worked like charm! Thanks :)

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

    Gostei do tutorial, simples e sem enrolação. Parabens!!

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

    Hello sir , I would like to send the message through a specific event in the realtime database instead of sending it manually using publish. How can I link between FCM and realtime database?

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

    The perfect video, I was searching for. Thanks a lot for uploading such content. But, I came into a problem, I have 1 child inside that child I have another 4 child, How can I read them all?

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

    all the installation part with flutterfire is missing, we don't see how you solve the interference with cocoapod..

  • @mehmetcobanoglu8519
    @mehmetcobanoglu8519 Год назад +2

    thank you

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

    source code please