List Method .fold() in Dart and Flutter

แชร์
ฝัง
  • เผยแพร่เมื่อ 3 ธ.ค. 2024

ความคิดเห็น • 39

  • @gautambedi591
    @gautambedi591 ปีที่แล้ว

    Very nice explanation

  • @adrek9018
    @adrek9018 3 ปีที่แล้ว +1

    Excelent explanation. Thanks

  • @ahmednafiunoman5040
    @ahmednafiunoman5040 2 ปีที่แล้ว +1

    What a great topic ...much love sending to you.

  • @RetroPortalStudio
    @RetroPortalStudio 4 ปีที่แล้ว +11

    Great Content ! ✌😁 Keep up the good work

  • @jamshaidmalik463
    @jamshaidmalik463 ปีที่แล้ว

    very nice and simple video keep it 👆 👆

  • @somevideos99999
    @somevideos99999 3 ปีที่แล้ว +1

    Very nice description of the .fold() method, thank you!

  • @rezahosseinkh6528
    @rezahosseinkh6528 3 ปีที่แล้ว +1

    nice channel ⭐keep going plz

  • @anirudhachakrabarty2050
    @anirudhachakrabarty2050 4 ปีที่แล้ว +1

    Awesome tutorial... I liked it ..

  • @ahmedebrahimn97
    @ahmedebrahimn97 2 ปีที่แล้ว +1

    great it helped a lot

  • @sadzolot2
    @sadzolot2 4 ปีที่แล้ว +1

    You are very good teacher :)

  • @pvarela
    @pvarela 4 ปีที่แล้ว +1

    I like how you pronounce Flutter, thank you for your video.

  • @astridtaw
    @astridtaw 4 ปีที่แล้ว +1

    Thank you so much, you made my day!

  • @내신비서
    @내신비서 4 ปีที่แล้ว +1

    awesome !!! Thank you so much (from S.Korea)

  • @javierserna6631
    @javierserna6631 4 ปีที่แล้ว

    good video thanks a lot from spain!!!

  • @WebPhix
    @WebPhix 4 ปีที่แล้ว

    Awesome tutorial !! I learnt many things.

  • @moazelsawaf2000
    @moazelsawaf2000 4 ปีที่แล้ว +1

    Thanks ❤

  • @esentakos
    @esentakos 4 ปีที่แล้ว +1

    Interesting, I didn't knew about this method ! Thanks for the video.

    • @FlutterExplained
      @FlutterExplained  4 ปีที่แล้ว +1

      Great I am very happy that it helps you along your way :)

  • @arsalankhanahmed
    @arsalankhanahmed 4 ปีที่แล้ว +1

    Thank you

  • @DigitalDesignET
    @DigitalDesignET 4 ปีที่แล้ว +1

    Good one !!!

  • @maung1982
    @maung1982 2 ปีที่แล้ว

    Thanks

  • @AbdullahAbdullah-vz4nk
    @AbdullahAbdullah-vz4nk 2 ปีที่แล้ว +1

    grt & tnx.

  • @ikishan96
    @ikishan96 4 ปีที่แล้ว +1

    well explained 👍

  • @actionscript3661
    @actionscript3661 2 ปีที่แล้ว +1

    please need Map Properties in Dart and Flutter

  • @parthsavliya4441
    @parthsavliya4441 3 ปีที่แล้ว

    ♥️♥️

  • @igor10ms
    @igor10ms 3 ปีที่แล้ว +1

    how can I replace an item in a list with another item in the same index? (ie delete an item and place another item in the same place as it was)

    • @FlutterExplained
      @FlutterExplained  3 ปีที่แล้ว

      If you know the index it is quite easy, you can just overwrite it.
      stackoverflow.com/a/63757729/3690032
      To find the index you can use methods like indexOf. I hope that helps :)

  • @eliudnjai
    @eliudnjai 3 ปีที่แล้ว +2

    if you get an error in 2021 about num not being int - simply disable null safety. This is a problem with dart not the code.

    • @FlutterExplained
      @FlutterExplained  3 ปีที่แล้ว

      Great stuff, thanks Eli :) yes, this was done in a non-null safe environment!

  • @ahmedebrahimn97
    @ahmedebrahimn97 2 ปีที่แล้ว

    I get error while running this...I think it's a null safety issue...how to resolve please
    //Find sum age of all friends and print it.
    List myFriends = [
    Friend(name: 'Mahtab', age: 18),
    Friend(name: 'Sara', age: 25),
    Friend(name: 'Mathias', age: 32),
    Friend(name: 'Alex', age: 22)
    ];
    int sumAge = myFriends.fold(0, (prev, friend) => prev + friend.age);
    print(sumAge);
    }