@@FlutterMapp I use the ones that I need depending on the scenario 😊
@Fred_Klingon3 жыл бұрын
Interesting video, I was looking for it. Just a little note: it would have been nice to explain well what is a "dependency" from widget's perspective, that triggers a didChangeDependencies call. Regarding deactivate, maybe its fired once the widget is removed from the tree, while the instance continues to exist? I'm thinking about a widget that is set to "hidden" visbility.
@saiphaneeshk.h.54823 ай бұрын
Yeah, the dependency part is a bit confusing.
@i.k.shaikh37723 жыл бұрын
Excellent demonstration
@victorhpantunes4 жыл бұрын
Awesome video. A lot of things that I didn't know it
@RobertBrunhage4 жыл бұрын
Glad it was helpful!
@fullstack_journey4 жыл бұрын
This was widget lifecycle, can u do one on app lifecycle too?
@RobertBrunhage4 жыл бұрын
Have an old video about it but thinking of updating it as a lot of people has been asking about it!
@Fred_Klingon3 жыл бұрын
As far as I know, a Flutter App is a widget, that's stated in the doc :)
@illtrax3 жыл бұрын
Thanks for the summery!
@junveld4830 Жыл бұрын
Thank you, please post more interview questions
@genes-p9hАй бұрын
very helpful ty
@danangdwigustifajaryanto3 жыл бұрын
I just wondering what is the different between dispose and deactivate.
@TheFredFred334 жыл бұрын
Excellent 👏🏻👏🏻👏🏻👏🏻👏🏻
@RobertBrunhage4 жыл бұрын
Thank you! 😃
@Pedro5antos_2 жыл бұрын
Thanks for sharing! AWESOME!
@mgmyo70664 жыл бұрын
please make tutorials of navigation 2.0.
@ilgztrs Жыл бұрын
Deactivate is useful if you want to interact with bloc before disposing the widget
@ehsanhasin Жыл бұрын
thank you
@olaoluwamarvellous7002 жыл бұрын
Thank you
@Prizza_3lik Жыл бұрын
thanks you bro
@oswaldoolea288910 ай бұрын
great, thank a lot.
@yashdixit33524 жыл бұрын
What is dependency change?
@RobertBrunhage4 жыл бұрын
When you pass something through the constructor to a widget, that widget is depandant on that value. So in a sense it's that if a value changes hat is the same as saying that the dependency changes.
@hasansalim18684 жыл бұрын
Thanks, but what about the constructor of the state class?
@s.thentaro59017 ай бұрын
What's about "activate" life cycle?
@SuperHesni4 жыл бұрын
great video as always
@RobertBrunhage4 жыл бұрын
Thanks! Something I have on my todo so certainly in the future 😊
@Ls-df2mf3 жыл бұрын
Good one
@danumichael21434 жыл бұрын
great video
@boghdadyDev4 жыл бұрын
what is the font name that you are using ?
@dhanniekristanto4 жыл бұрын
firaCode
@RobertBrunhage4 жыл бұрын
I am using JetBrains Mono!
@dhanniekristanto4 жыл бұрын
@@RobertBrunhage didn't know mono got that ligature 😄
@mohamedalihammami50672 жыл бұрын
Excellent! Very helpful ,just if you can to make video for how to use huawei_map in Flutter thx
@yassinsaddem22624 жыл бұрын
It's very good but the deactivate explication is not clear
@RobertBrunhage4 жыл бұрын
Noted, if I come up with a good example I will update the Github Code!
@atulrawat29963 жыл бұрын
where is the createState method?
@jst_kishan4 жыл бұрын
How to write ≠ ?
@mohammadtalha23364 жыл бұрын
Turn on code ligatures in vscode settings and install fira-code font or any other that support code ligatures
@RobertBrunhage4 жыл бұрын
As Mohammad said, these is a setting in your ide or code editor for activating code ligatures. I am using JetBrains Mono and that activated!
@faheemahmad3957 Жыл бұрын
please make for 2023
@alexvaiman4966 Жыл бұрын
dispose not called memory like? are you insane my friend??? dart has garbage collector!!! it does not need you to dispose anything! with exception of resources which are not under dart control! VC is not one of them!!! you should dispose of timers, but why? well, the reason is, if you dont, when the timer comes back it may try to get ref to disposed object, and you will have a crash. I hate when people talking about "memory leaks" - it is plain crap!