Flutter Tutorial - Chip - Deep Dive

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

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

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

    Thanks man!!❤
    I was searching for the choice chips but I didn't got the desired results, thanks for the solution🙏

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

      Glad it was helpful, @sahiljain3400 😀

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

    Another wonderful video, thank you for all you do for the flutter community! We appreciate you!

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

    You're the best! ❤

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

    You make helpful videos! Thanks

  • @mascoder.8923
    @mascoder.8923 Год назад

    Wow just outstanding 😍

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

    Because of such flexibility on your fantastic video, I love Flutter than React-Native. But you know what there is not much Flutter Dev job in the market.

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

    Thank You..

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

    Hi Johannes, really nice video! Could you make a video where you filter with firebase data?

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

      Hello Johannes, if you made this video where can i find it?

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

    I used filter chip in bottom sheet,on click it is changing book from true to false and then again true but isn't updating UI unless I close bottom sheet and reopen.

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

    in your choicechips code, instead of make new list of choicechips, maybe take more long time than just replace the variable isSelected when user clicked???
    My solution:
    I added 1 more variable in model named index, then when user click, I switch value of choicechips[index]. it does not need to re-create all the list again.
    just my idea.

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

    how can customize deleted icon color and background color ?

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

    Error: Getter not found: 'ScaffoldMessenger'.
    ....
    I had to declare it as a var before I could run the program.
    But still when i would click on the chip I would get another error:
    The method 'of' was called on null. Receiver: null. Tried calling: of(Instance of 'StatefulElement')
    The error has something to do with ScaffoldMessenger.of(context)

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

      @@HeyFlutter yeah.. But it was a massive waste of time...
      I actually managed to give beta a try.. And that's how I solved it

  • @Sarah-bb2so
    @Sarah-bb2so 3 года назад

    Hey, how can I get the values of the filter chips and mail them to an email address using mailer package when user press my mail button. I already have the mailer code working just need to know how to include the values/message of the chips into the email message.

    • @Sarah-bb2so
      @Sarah-bb2so 3 года назад

      @@HeyFlutter hey, I've followed your tutorials What I have in my application is a choicechip for student to rate something. And I have 3 choice chips and they are ‘dissastisfied’ ‘neutral’ and ‘satisfied’. So once the student chosen one, there will be button for them to tap and the application will send a mail to an email address about the student’s choice. I'm using mailer package for this. this is for my school project and as I'm learning as I go, I willdeeply appreciate your help

    • @Sarah-bb2so
      @Sarah-bb2so 3 года назад

      because I'm not sure how to modify this code, but I've tried...