Flutter Bloc & Cubit Tutorial

Поделиться
HTML-код
  • Опубликовано: 9 янв 2025
  • 📗 Written tutorial & starter project 👇👇
    resocoder.com/...
    📧 Get Flutter news 📰 and resources:
    👉 flutter.education
    👨‍💻 Do you write good code? Find out now!
    resocoder.com/...
    Bloc is a well-known and established library when it comes to state management in Flutter. It promotes good practices such as immutability and it has one of the best ecosystems of supporting packages and documentation built around it. In spite of all these benefits, using the Bloc package is painful at times and the cause is none other than boilerplate.
    The version 6.0.0 and upwards of the Bloc package comes to make this library palatable to the masses! It gives you the ability to use a lighter version of Bloc called Cubit and removes a bunch of boilerplate.
    Go to my website for more information, code examples, and articles:
    ● resocoder.com
    Follow me on social media:
    ● / resocoder
    ● / resocoder
    ● / resocoder

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

  • @h3w45
    @h3w45 4 года назад +77

    2:57 going over the sample project
    4:36 cubits vs other mutable state management
    9:34 BLoC vs cubit
    11:00 building app using cubit
    37:10 building app using BLoC

  • @samuelobe5714
    @samuelobe5714 4 года назад +39

    I'm a simple man. I see a new Reso Coder video, I click...

  • @h3w45
    @h3w45 4 года назад +41

    thank you for covering the latest version of BLoC.

  • @SEOTADEO
    @SEOTADEO 3 года назад +2

    Thanks a lot for this good tutorial! I have been working part time for 6 months in a flutter project for a big IT company and never cared that much to understand this concept, but now I do and it makes everything a lot easier.

  • @justconnor734
    @justconnor734 4 года назад +21

    @34:50 For "final weatherCubit = context.bloc();" it says "'bloc' is deprecated and shouldn't be used. Use context.read or context.watch instead. Will be removed in v7.0.0.
    Try replacing the use of the deprecated member with the replacement.". What is a good replacement for this code? Thanks
    EDIT for anyone interested its final weatherCubit = context.read(); intead

  • @mostafafahimi4588
    @mostafafahimi4588 4 года назад

    This channel is best flutter channel ever. Watched a lot of bloc tutorials but non was helpful like this.

  • @alex_moreno
    @alex_moreno 4 года назад +8

    I love the simplicity of cubit.
    Thanks for sharing this and compare the differences
    You are awesome

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

    This is the best explanation of the Bloc I've seen

  • @juan_chan
    @juan_chan 4 года назад

    man, thats a really good explanation of this new feature, i dont even have a goods english skill and i completely understood what cubit and bloc is, thank you

  • @jamesdim
    @jamesdim 4 года назад

    You are the best source for bloc development! And always up to date!

  • @nawalhussein1891
    @nawalhussein1891 4 года назад +5

    You are an amazing teacher! Thank you. Bloc has been like a maze for me and you have helped me greatly in figuring it out. Thanks again.

    • @ResoCoder
      @ResoCoder  4 года назад +2

      Glad I could help!

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

    Thanks since from Brazil, man! Keep going the good job!

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

    I like your coding practices like organising files and stuffs

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

    Man. You got a new subscriber!!!!!!!!!
    This was so good. It cleared every question i had
    Thanks!!!!!

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

    best ever tutorial for beginners...SUBSCRIBED

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

    Combined Cubit with Freezed.. and OMG what a result!

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

    I guess now i can move forward to making a complete app. Thanks man!

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

    Wow! This is a great course on Bloc library.

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

    Thank you so much! It really helped me start with Bloc and Cubit. It is really similar to Jetpack ViewModel and Kotlin Flow pattern which is amazing!

  • @oblakus
    @oblakus 4 года назад +1

    Dude, thank you for this "eureka moment" that I just had!

  • @amartyakhan4700
    @amartyakhan4700 4 года назад +1

    Thanks a lot for this video! An in depth video/tutorial series about connecting a Flask/Django backend with a Flutter app would be amazing

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

    Thank you so much for explaining this. I was looking for this for a while!

  • @pedroricci1
    @pedroricci1 4 года назад

    Wow, great timing! Yesterday I was reading the documentation. Thanks!

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

    Great video tutorial👏!
    Thanks for formatting the vid to be straightforward. The website link helps so it can be easily followed.
    Looking forward to other awesome videos.

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

    Thanks for your instructions, I love the way you organized your youtube channel and linked to your website, I'm doing with Bloc and now the cubit just remove the state file, which means will save my time alot. Really want to work with you some day, Peace out mate

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

    In learning state management (for flutter/dart development), I’ve been through with the setState design and the provider package; now looking at the BLoC pattern.
    BLoC ‘feels’ like imposing imperative design on a basically declarative (reactive) system, where provider seems a better fit for the flutter declarative framework.
    I don’t have good/bad opinions about this yet, just interested the views of those more experienced with flutter/dart .

  • @thedudeabides8637
    @thedudeabides8637 4 года назад +2

    Thank you for this. As a noob developer, after really diving into this video and going through it a few times over a couple days, I FINALLY feel like I actually understand how Bloc/Cubit works and how to implement them into the first app that I'm building myself. I made major breakthroughs in my app after it all clicked for me with this video. And thank you for doing a tutorial on the updated Bloc/Cubit so soon after the major change, not much else out there that's up to date
    Lots of great flutter tutorials out there, Reso Coder rules them all. Thanks for the great work.

  • @karthikraja6577
    @karthikraja6577 4 года назад +4

    Finally bloc tutorial 👍👍👍👍👍
    How many more videos are there in the DDD flutter series ?? @resocoder

    • @ResoCoder
      @ResoCoder  4 года назад +5

      I think not more than 4.

    • @karthikraja6577
      @karthikraja6577 4 года назад +2

      @@ResoCoder eagerly waiting for them ! Take care and relax ! It's surely a hell of task to compile such a awesome course !
      Great effort bro 👍

    • @mibi2007
      @mibi2007 4 года назад

      @@ResoCoder really good tutorial, thank you so much Matt

  • @danarputra9181
    @danarputra9181 4 года назад

    For first time using Bloc is hard
    And now in this video i know how is Bloc is worked

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

    *After v6.1.0, both context.bloc and context.repository are deprecated in favor of **context.read** and **context.watch*

  • @chanky262
    @chanky262 4 года назад

    Awesome tutorial, thats what i was looking for

  • @akshaymarathe8133
    @akshaymarathe8133 4 года назад +2

    Sir please make a video of using bloc pattern along with json API

  • @fritzjimenez9109
    @fritzjimenez9109 4 года назад

    Finally a new bloc tutorial

  • @LeagueRandomPlayer
    @LeagueRandomPlayer 4 года назад

    Great Video i was waiting for this, GREAT GREAT JOB THANK YOU!!!!

  • @ShadowInfest
    @ShadowInfest 4 года назад

    Hey ResoCoder ;) Working on our app and needed to update Bloc. Thanks for this amazing video once again

  • @Grovermol
    @Grovermol 4 года назад +5

    Nice tutorial, i'm finally understanding cubit and bloc, thanks dude. By the way what theme did you use in VsCode for the tutorial?

  • @ahmedmaher-ez9xt
    @ahmedmaher-ez9xt 3 года назад

    thank you so much for your time and effort :) i'm learning from you a lot every day ... planing to finish TDD after this i will make a my start up project using TDD and will apply to remote job :) i will tell you when i got a job that your are the main reason of it ^_^

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

    Thanks a lot for this tutorial you realy saved my day im already your subscriber

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

    great work, thanks alot for your vids, you just saved my days.

  • @rockinouttt
    @rockinouttt 4 года назад

    Thank you for this video. Very helpful!

  • @yaseerahmed1325
    @yaseerahmed1325 4 года назад

    What an amazing tutorial. Easily the best👌👍

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

    Thank you so much ! It helped me a lot

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

    bravo! excellent totorial!

  • @peterwauyo2424
    @peterwauyo2424 4 года назад +2

    great explanations

  • @mohad1062
    @mohad1062 4 года назад

    you are my hero man.

  • @easazade
    @easazade 4 года назад +3

    thank you for this my code just became so smaller using functions instead of events

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

    Another great video!

  • @HashemRC
    @HashemRC 4 года назад +2

    always thanks for you quality tutorials. what's real difference between Bloc and Cubit? when should we use Cubit?

  • @semsax6862
    @semsax6862 4 года назад

    Just what I was looking for!!!

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

    Everything is beautiful 😊😊

  • @astronaute
    @astronaute 4 года назад +2

    There is no need to add "bloc" in pubspec.yaml, it’s pulled automatically with "flutter_bloc".
    Also, when using "const" constructors, you shouldn’t use "new" with them, it defies the (already limited) purpose.

    • @francoprofeti142
      @francoprofeti142 4 года назад

      I was thinking about the second thing while watching the video

  • @elistark9264
    @elistark9264 4 года назад

    This is what we are waiting for!

  • @johncerpa3782
    @johncerpa3782 4 года назад +1

    Great video, thank you

  • @chinazaogwo5046
    @chinazaogwo5046 4 года назад +1

    Awesome tutorial. Please can you send the plugins you use for flutter development with vs code

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

    Thank you for the tutorial. Can you show me the code using the "freezed" package?

  • @nicolasdupere
    @nicolasdupere 4 года назад

    Great tutorials! Thanks

  • @landrygagne
    @landrygagne 4 года назад +2

    Great tutorial, thanks a lot! I was SOOOO depressed to see my app broken by flutter_bloc version upgrade. BTW, 6 major versions within 8 months for the flutter_bloc package, am I the only one shocked? Any chance to get some kind of stability for this package in the future? Otherwise you will be obliged to make a new tutorial every month!!!

    • @ResoCoder
      @ResoCoder  4 года назад +1

      Most of the changes are quite minor but by following the rules of semantic versioning, every breaking change has to automatically bump the major version number. I'm not opposed to doing tutorials though 😀

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

    Clear explanantions..thank you so much..

  • @makewebapp
    @makewebapp 4 года назад +6

    why not using an equatable package? Any specific reason? equatable: ^1.2.0

    • @aytunch
      @aytunch 4 года назад

      I want to know the same thing. Especially considering the same author wrote equatable with bloc

    • @ResoCoder
      @ResoCoder  4 года назад +1

      Just to not introduce yet another package into the tutorial. I guess it's simple enough that I should've used it though.

    • @nonsoedu4353
      @nonsoedu4353 4 года назад

      Me too taught equatable got obsolete for a minute or two there😌 ... Really nice tutorial though... understand the reason for cubit alot better now

  • @samiral7423
    @samiral7423 4 года назад +1

    please teach TDD with cubit

  • @Fly16
    @Fly16 4 года назад +1

    amazing tutorial! by the way what's the font you are using?

  • @ahmedelbaghdady
    @ahmedelbaghdady 4 года назад

    very good i like your videos and i'm bloc fan like you thanks

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

    Why do we pass the repository as a paramter to the cubit, rather than instantiating it inside the cubit .
    Nice tutorial. like how u explain and compare to other tools

  • @snaidher5
    @snaidher5 4 года назад

    Hi , please could you make an example of using firebase with cubit, please!

  • @efesahin7168
    @efesahin7168 4 года назад

    hey why did not use listener in weather_bloc.dart page ? In previous video which is counter app, we used to constructor with listen function.
    i mention that:
    CounterBloc() {
    counterEventController.stream.listen(mapEventToState);
    }
    like this.

  • @Ryszardenko
    @Ryszardenko 4 года назад

    Awesome! Thanks!
    Can you explain how toi use freezed with State classes?

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

    Thank you for this video. I'm still new to flutter and I'm trying to develop cubits in an App. I'm lost on how to communicate the button tap/press event that calls an API get data and rebuild the UI and render it on a DataTable

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

    Awesome man, thanks a lot

  • @Alex-dg2mb
    @Alex-dg2mb 4 года назад

    If the block consumer only defined handling the case where the state is weatherloaded in the builder function (only the weatherror state was handled in the bloc listener), how did the UI update on weatherloaded once you searched for weather second time ? This is during the cubit section of this talk.

  • @srihariayapilla4233
    @srihariayapilla4233 4 года назад

    Which vs code theme is thhis. Looks sooooo good.

  • @efesahin7168
    @efesahin7168 4 года назад

    what is the differences between cubit and bloc? why we use cubit if we deleted or switched them ?

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

    Nice tutorial! I would like to ask you guys why was it not necessary to dispose the bloc in this case? thanks!

  • @geraldcampana9296
    @geraldcampana9296 4 года назад

    thanks for the tutorial!

  • @TestingQuebec
    @TestingQuebec 4 года назад +1

    Thanks for the tutorial. I'm curious as to how the '^' works in the hashCode override for the Weather class? 'cityName.hashCode ^ temperatureCelsius.hashCode'

  • @Raj_Gada
    @Raj_Gada 4 месяца назад

    Can you upload a new Updated Video on bloc?

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

    thanks for the tutorial

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

    One question: is it important to provide the FakeWeatherRepository from outside to the Cubit through its constructor? Is there some disadvantages if I create an instance of it inside the Cubit?

  • @mallikarjunreddy5229
    @mallikarjunreddy5229 4 года назад

    Hey Matt, great explanation. Could you please help me out on how to generate boilerplate code like bloc extension.

  • @programan6391
    @programan6391 4 года назад

    Great job, thank you.

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

    Amazing thanks 😊

  • @axehai
    @axehai 4 года назад +3

    Hey, great work as always, I wanted know why didn't you suggest using Equatables for checking equality, like in TDD tutorials?

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

      Can I use equatable package along with cubits without overriding equality?

  • @virenkhatri1932
    @virenkhatri1932 4 года назад

    Why didn't you use equatable instead of == and hashcode overrides?

  • @pedrosanchezroca181
    @pedrosanchezroca181 4 года назад

    how would you put data in the InitialState for the cubits?...like if I want data loaded at the beginning.

  • @akliatharia
    @akliatharia 4 года назад

    great work ,pls how to rebuild a widget as a response emitted by 2 different blocs ( i used BLoC 6.1.0 and context.watch() )

  • @jktan5793
    @jktan5793 4 года назад

    Hi @reso coder
    I have question about GetX, I am not sure what do you think about that library.
    thanks for sharing your knowledge and opinion.

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

    well explained

  • @ethanhunt8316
    @ethanhunt8316 4 года назад

    Thank you so much, you are the best.

  • @i.k.shaikh3772
    @i.k.shaikh3772 4 года назад

    Hey Thanks for this brightening tutorial, i am trying to pass an index of files in a directory to a listview, could you help me with that ??

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

    Thank you for this amazing tutorial. It explains really well the topic!
    Just one question: for every Cubit/Bloc in a project the states are usually Empty, Loading, Loaded & Error or there are other cases?

  • @mual77
    @mual77 4 года назад

    Good job!

  • @aserlink
    @aserlink 4 года назад

    How do you override equality using freezed? I have read the written tutorial but didnt find much help about this part

  • @1234matthewjohnson
    @1234matthewjohnson Год назад

    can the equatable package not be used with cubits rather than something like freezed?

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

    Muchas gracias hermano!!

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

    I have a question, if I want to save the data that comes from the weather api in a database (sqflite), at what moment of the emit should I call that method to save and how would it be?

  • @snaidher5
    @snaidher5 4 года назад

    Hi, please could You Make a login example using cubit, I don't know how to validate the form.
    Thanks in advance

  • @bmsrangel1
    @bmsrangel1 4 года назад

    Hey, man! How are you?
    First of all, congratulations for this tutorial! It helped me a lot with BLoC understanding!
    Dude, what is the best way to fix the warning "Close instances of `dart.core.Sink`."? I understand this warning helps to avoid memory leak due to opened streams left behind. I noticed that in Bloc code there's a close method. In this case, how do we handle it? Do we need to close the stream manually? Or it will be executed automatically?

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

    What is the difference between BLOC builder and BlocConsumer?

  • @firafashop8116
    @firafashop8116 4 года назад

    request how is bloc implemented in multi dropdownbutton

  • @nileshbhakre7050
    @nileshbhakre7050 4 года назад

    overriding equality can have been avoided using equatable, isn't cubit boilerplate comes with equatabel in it? by the way great tutorial as always...

  • @StefanoSaitta
    @StefanoSaitta 4 года назад +1

    Great content as always, in your opinion it makes sense to mix cubit and bloc in your app? What a bloc can do that a cubit can't?

    • @ResoCoder
      @ResoCoder  4 года назад +1

      Thanks, Stefano! Bloc can, for example, transform its incoming events with debounceTime from RxDart. This is useful for auto-search where you don't want to necessarily trigger an API call for every inputted character.