Тёмный

Flutter Provider Simply Explained 

Learn App Code
Подписаться 19 тыс.
Просмотров 91 тыс.
50% 1

Опубликовано:

 

2 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 160   
@denzell5070
@denzell5070 3 года назад
Shoutout to the devs that need concepts to be explained to them in kid terms.
@TheAbhidugar
@TheAbhidugar 2 года назад
thank you
@shlokbhakta2893
@shlokbhakta2893 2 года назад
Thanks
@Asafo-AdjeiJensenKwekuSedem
@Asafo-AdjeiJensenKwekuSedem 7 месяцев назад
Arrigato
@Akua-hx3rb
@Akua-hx3rb 2 месяца назад
amen
@cocoralf
@cocoralf 4 года назад
The most didactic and graphic videos I´ve ever seen. You sure know how to help people understand, you really are an outstanding teacher. Cheers from Argentina!
@dennyraymond9932
@dennyraymond9932 4 года назад
Waiting for the future, proxy and stream provider explanations, combine with implementation with firebase too 🔥
@LearnFlutterCode
@LearnFlutterCode 4 года назад
Noted
@jaggyjut
@jaggyjut 4 года назад
yes please. one more to the vote.
@kimbowaaloysius9034
@kimbowaaloysius9034 4 года назад
This is the best tutorial I've ever seen. You are an adept tutor. Bravo Harris, bravo!
@LearnFlutterCode
@LearnFlutterCode 4 года назад
Glad it was helpful!
@lucasandrade7421
@lucasandrade7421 4 года назад
I usually dont comment on RU-vid tutorials, but Man, yours was so easy to follow and so joyful that I just had to. I hope you keep up the good work and high quality explanation videos because they are awesome! Cheers from Brazil
@plainfilth1126
@plainfilth1126 3 года назад
I like this guy's vibe and the analogy, he earned my subscription!
@oniscsadi
@oniscsadi 3 года назад
Awesome explanation. Classic example of "If you can't explain it simply you don't understand it well enough". Thank you
@pradeepkumarreddykondreddy7048
@pradeepkumarreddykondreddy7048 3 года назад
Can you do a video on ChangeNotifier ?
@AungWinHtutGH
@AungWinHtutGH 3 года назад
Dear Sir, you save my day! Crystal clear explanation with fish and river indeed :). Thank you so much and waiting for more tutorials.
@yoapps137
@yoapps137 4 года назад
Nice, I really recommend this for those who come from any non JAVA background, especially JS. This is a very good place to bring into perspective how important it would be to come with a backing of Inheritance, Composition and Generics. And then you would really admire Flutters ability of weaving these hard core programming concepts into a simple package. Great example!
@fazalmuhammad5467
@fazalmuhammad5467 3 года назад
Love u flutter teacher sensei ustad guru 😍😘👨‍💻👨‍🏫
@Zizo1st
@Zizo1st 3 года назад
Great work man 👍! Love the way you explain this, hope for more. You should make a full course for Flutter! Cheers from Egypt =)
@LearnFlutterCode
@LearnFlutterCode 3 года назад
Thanks, will do!
@GfoxSim
@GfoxSim Год назад
What an awesome video! So calm and easy to understand. I was confused by Provider but now I'm getting the hang of it. Thank you.
@Mohammed-tr1hf
@Mohammed-tr1hf 3 года назад
Because it was silly .. it was a perfect! We need a river pod video now.😩
@shahidbangash4778
@shahidbangash4778 3 года назад
Wowwwwwwww I really love it. Amazing .. keep it up
@Jack_Ranold
@Jack_Ranold Год назад
I don't get why we are using routes instead of a scaffold
@kekko7072
@kekko7072 3 года назад
Best video about provider! Thank you so much
@stvhrsdev9103
@stvhrsdev9103 3 года назад
Love ur conten pls create more on ur ig
@FusionShotsStudio
@FusionShotsStudio 3 года назад
after More then 7 time try, now i understand thanks
@LongNguyen-kw1rh
@LongNguyen-kw1rh 2 года назад
OMG thank you 3000 times this saves my life I've been so exhausted in class because I didn't get the provider concept so following lessons made me confused too, this maybe a hit to get things aligned
@batuhankrbb
@batuhankrbb 3 года назад
It's the best provider explanation on the internet by far. I wish all teachers were like you
@logicgates8944
@logicgates8944 2 года назад
Great explanation; Thank you for your time
@saliouseck4263
@saliouseck4263 3 года назад
Thanks for the video
@aysekarahasan7091
@aysekarahasan7091 3 года назад
It is really beneficial video, thank you for embodying it with fishing :)
@mxzeromxzero8912
@mxzeromxzero8912 3 года назад
Best provider tutorial ive seen so far. Kudos for you man
@xtraszone
@xtraszone 2 года назад
// ! Provider CheatSheet // Step 1: Create Model class class Counter extends ChangeNotifier { int count = 0; void increase() { count++; notifyListeners(); } } // Step 2: Wrap root widget in MultiProvider, Also initialise Counter() here MultiProvider( providers: [ ChangeNotifierProvider(create: (_) => Counter()), ], child: MaterialApp(), ) // Step 3: Read value final count = Provider.of(context).count; // Step 4: Write value Provider.of(context, listen: false).increase();
@RamsesAldama
@RamsesAldama 3 года назад
Nice video. When the home and settings widget want to get the data from the provider, do they get a copy of the data or a references to the data? If they get a copy, isn't that expensive? Thanks.
@mathstific
@mathstific 4 месяца назад
this is very useful and nobody ever explained me like this. this lesson is very clear to me. hopefully 5-year-old kid may understand this even though he does not know what flutter is 😅
@AbhishekYadav-uy4zp
@AbhishekYadav-uy4zp 2 года назад
Hey.. Provider working good in debug mode but not working in release mode. (future Builder, then Consumer) I wrap the switch inside the consumer
@anshikaguleria8794
@anshikaguleria8794 9 месяцев назад
OMG! thanks this helped me a lot cause I have going through so many materials but just couldn't understand what was going on
@shrutigarg3112
@shrutigarg3112 Год назад
This is so amazing video till I watched... I was go through with multiple videos but never watched like this explanation..
@saadmansoor3547
@saadmansoor3547 Год назад
"Widget only flows downwards". You mean in the first example @ 7:00 , i cannot access user data from 's object ?
@133sjassson8
@133sjassson8 2 года назад
What if I store the object/fish in a specific place eg. constants.dart, and access it by importing when needed? Can I do this instead of using Provider?
@Yusuf-rh6sj
@Yusuf-rh6sj 4 года назад
awesome
@uiux.developer
@uiux.developer Год назад
Hello, Sir, I'm 5 years old I got it ... but how and where I will learn the rest of Flutter please make more videos like that.
@h_s_4049
@h_s_4049 3 года назад
wowww maannn....great explanation....thanks alot!!!😍😍🙏😍🙏🙏
@yogaroutines6501
@yogaroutines6501 2 года назад
I was searching and reading for multiple sites and video to understand the provider concepts but i was not 100% clear to understand the concepts. This video is amazing and nicely explained the concepts with graphic animated story, i could digest the concepts very easily. Subscribed to your channel and going to see your other videos. Thanks
@oldmen2544
@oldmen2544 4 года назад
Brother I want to filter firestore data which I am getting through future builder .... Please 🥺 help me I can pay you for that...
@mohammad-karbalaee
@mohammad-karbalaee Год назад
That is hight-quality educational content. Thanks
@syedhaidar6291
@syedhaidar6291 2 месяца назад
your video is really understandable, love it! new subscriber for you
@alvido97
@alvido97 3 года назад
❤️
@iRozdobudko
@iRozdobudko Месяц назад
Very well explained! I like the way you do it! Good luck!
@nurmtv2983
@nurmtv2983 2 года назад
Thanks bro! U r amazing! Keep doing what you do!
@Aravind_Hindhu
@Aravind_Hindhu 2 года назад
Please explain build context method.. It is mind bogling
@Jonathan-xe4ec
@Jonathan-xe4ec 3 года назад
Why the f are all these tutorial videos always low in sound?
@HarutakaShimizu
@HarutakaShimizu 21 день назад
Wow, I love the way you teach-so unique!
@pixmasterstudios5623
@pixmasterstudios5623 4 года назад
The best yet simple explanation for Provider package. Keep it up Haris🔥😎
@Bruno_Mota
@Bruno_Mota 10 месяцев назад
Thanks for this great explanation! I learned a lot!
@douachealaeddine878
@douachealaeddine878 Год назад
Man you deserve a subscribe, thank you!
@adiktuz8545
@adiktuz8545 3 года назад
hi. do you plan on release riverpod course in udemy?
@alidahud337
@alidahud337 Год назад
Bro is high while recording these videos. 😂😂
@OrucMahmood
@OrucMahmood Год назад
Amazing explanation! Thanks a lot!
@marcosmarques9228
@marcosmarques9228 4 года назад
Just the explanation I needed
@LearnFlutterCode
@LearnFlutterCode 4 года назад
😁
@ILUSHNIK
@ILUSHNIK 3 года назад
For me this is not the best analogy because after fish has copied into two 6:16 we have two independent fishes. Because of that, if we change color of the settings fish, home fish stays the same red color. That is not correct. I prefer to visualize it as a context with inversed terrain heights in your picture example (Home, Settings at the top of the mountain and fish object at the bottom), watchman with binoculars is a provider.of(context). Watchman can look at any object 24/7 in surroundings below but not above. In that case we can have a lot of watchmen located at different heights in the mountain looking at the same fish below. If fish changes it's property, color for example, all watchmen outposts get notified instantly and handle it according their own script.
@EduardAlexandru
@EduardAlexandru Год назад
Nicely explained, thanks!
@ဖို့
@ဖို့ 10 месяцев назад
i'm 3 years old can i still watch this?
@02in01
@02in01 Год назад
But from where do you get the actual data?
@amnaijaz4230
@amnaijaz4230 2 года назад
Amazing concepts thanks alot
@Ralphflowers
@Ralphflowers 2 года назад
Today I am that 5 year old.
@Asafo-AdjeiJensenKwekuSedem
@Asafo-AdjeiJensenKwekuSedem 7 месяцев назад
Bro.... Thanks so much. I've watched all these videos where they make provider look like some untamable monster. And no matter how many times I memorized and wrote the code in different styles, I still couldn't figure out what the heck was going on. But now I do and it's so simple!🔥🔥🔥🔥🔥
@rkumar4593
@rkumar4593 Год назад
best explanation, Thanks,
@SergioArroyoSailing
@SergioArroyoSailing 4 года назад
awesome work! and humorously done at the same time :) great work!
@furo.v
@furo.v 2 года назад
5 year old me: Why is the user a fish
@pranthonyaquino
@pranthonyaquino 3 года назад
Excellent explanation, now I love provider, fishes and your channel.
@b3njamim
@b3njamim 3 года назад
The perfect Provider tutorial doesn't ex... wait! it is this video.
@LearnFlutterCode
@LearnFlutterCode 3 года назад
The perfect comment doesn't ex... wait! it is this comment.
@RLstavista
@RLstavista 5 месяцев назад
These are really great for dummies explanations with pictures haha. Good stuff!
@TheBoredandCool
@TheBoredandCool 3 года назад
It was just awesome
@JakBeat
@JakBeat 2 года назад
Hahah so cute! Thank you!
@ericchua3492
@ericchua3492 4 года назад
which state management will you recommend? i feel flutter_bloc requires to write bloaty codes, and end up lost focus aka take too long time.. is there a better choice?
@yashraut19
@yashraut19 4 года назад
GetX
@RandalLSchwartz
@RandalLSchwartz 3 года назад
ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-J2iFYZUabVM.html - RiverPod, of course.
@maxxxtermind
@maxxxtermind 10 месяцев назад
Oh my god, finally a tutorial for my cognitive abilities. Thank you ❤
@AbdolHussain
@AbdolHussain 3 года назад
I am 24 and was not able to understand the provider first time watching this, am I stupid?
@LearnFlutterCode
@LearnFlutterCode 3 года назад
its okay man. Take your time. Everyone has different learning speed
@DaPukhtoTakor
@DaPukhtoTakor Год назад
me 2, I am having a problem understanding state management, I even used someone code for themes which was a provider method, copying the code didn't help, it works but i can't understand it
@Burak-cr6um
@Burak-cr6um 8 месяцев назад
Thank you, it helped a lot, you make things very simple to understand.
@Kliamframe
@Kliamframe 2 года назад
I get it now!
@nifesiodumirin5001
@nifesiodumirin5001 3 года назад
i still don’t get it sigh.
@ClocianClokes
@ClocianClokes 2 года назад
Very well explained!
@zkira445
@zkira445 3 года назад
This video is so cool 😎
@amzadonim9785
@amzadonim9785 4 года назад
Best provider video on youtube.You are such a great teacher
@Henry-kc7uc
@Henry-kc7uc 3 месяца назад
wow so interesting
@akarshs9552
@akarshs9552 4 года назад
you got 1 more subscriber .. Keep posting flutter videos
@LearnFlutterCode
@LearnFlutterCode 4 года назад
Thank you, I will
@reactnativedeveloper1682
@reactnativedeveloper1682 Год назад
best tutorial ever
@marsas61
@marsas61 3 года назад
Thanks for the best explanation. I was having difficulty to understand the concept.
@krishanmadushanka9521
@krishanmadushanka9521 2 года назад
Nice explanation
@awais.16
@awais.16 3 года назад
very well explained, I am working on firebase but I have doubt about provider.. thanks for such a wonderful explanation.
@abdulmagidelmaghbub9950
@abdulmagidelmaghbub9950 Год назад
nice explenation
@parthjangid3587
@parthjangid3587 2 года назад
You are great!
@designexperience
@designexperience 2 месяца назад
Thanks 🙏
@nimas7840
@nimas7840 3 года назад
Thanks, man.
@ahmedabuelnour1648
@ahmedabuelnour1648 2 года назад
Thank you!
@cookeneimfrancescaluisecuc5802
@cookeneimfrancescaluisecuc5802 2 года назад
thank you!
@ayushsharma3711
@ayushsharma3711 4 года назад
+1 subscribe
@storylineteam
@storylineteam 4 года назад
combine provider with getit and rename the fish to Shark singleton :P
@neocoretec
@neocoretec 4 месяца назад
Perfect!
@midclock
@midclock 3 года назад
Very nice explained in this way. Thanks
@user-or7ji5hv8y
@user-or7ji5hv8y 3 года назад
Is it like declaring a variable that has scope to all the children in the widget tree?
@KDTechverse
@KDTechverse 4 года назад
Why was that fish so fishy ? 😂 Well, Simple, neat and clean explanation keep doing the good work !
@LearnFlutterCode
@LearnFlutterCode 4 года назад
I love fish! Thanks for watching.
@aiaesthetic4201
@aiaesthetic4201 2 года назад
Amazing!
@TonTruong
@TonTruong 4 года назад
ok i ạm 5 ^^
@petroniobonavides3530
@petroniobonavides3530 3 года назад
Awesome!!!!!
@kaviramsamy3708
@kaviramsamy3708 2 года назад
What an amazing analogy... Awesome tutorial. Thanks
@danielderese3170
@danielderese3170 3 года назад
Awsome
Далее
Change Notifier Provider Explained
14:32
Просмотров 21 тыс.
Flutter Provider - Advanced Firebase Data Management
11:08
#kikakim
00:10
Просмотров 12 млн
Flutter Proxy Provider Simply Explained
13:44
Просмотров 15 тыс.
Flutter Provider EASY Tutorial
9:43
Просмотров 53 тыс.
Flutter Multi Provider Simply Explained
5:09
Просмотров 22 тыс.
Most complicated provider?
10:48
Просмотров 5 тыс.
7 Common Flutter Providers Explained
18:57
Просмотров 19 тыс.
10x Your Speed With Flutter
8:04
Просмотров 50 тыс.
The Value of Source Code
17:46
Просмотров 41 тыс.
Flutter Animation that Hovers?
12:29
Просмотров 47 тыс.