7 Common Flutter Providers Explained

  Рет қаралды 19,009

Learn App Code

Learn App Code

Күн бұрын

We describe what are Provider, Provider.value, Future Provider, Stream Provider, Multi Provider, Proxy Provider and ChangeNotifier Provider.
📣 Check out NEW Provider courses - learnfluttercode.com/courses/...
🔥 Check out our other courses -
⏰ Timeline:
00:00 - Introduction
02:59 - Provider
06:21 - Provider.value
07:07 - Future Provider
08:21 - StreamProvider
09:17 - MultiProvider
11:07 - ProxyProvider
14:57 - ChangeNotifierProvider
18:19 - Summary
👉 Subscribe to our weekly Flutter newsletter:
learnfluttercode.com/newsletter
📱 Pre Sign Up to Learn Flutter App :
learnfluttercode.com/app
Check out our website - learnfluttercode.com/
🖼 Learn Flutter Code Instagram:
/ learn.flutter.code
🖼 Learn Flutter Code Facebook:
/ learn.flutter.code
Haris's LinkedIn - / muhammad-haris-bin-sam...
Haris's Twitter - / thehappyharis
⏰ Timeline:
00:00 - Introduction
02:59 - Provider
06:21 - Provider.value
07:07 - Future Provider
08:21 - StreamProvider
09:17 - MultiProvider
11:07 - ProxyProvider
18:19 - Summary

Пікірлер: 45
@johndzikunu9986
@johndzikunu9986 Жыл бұрын
The best on the internet.
@UsamaKarim
@UsamaKarim 3 жыл бұрын
It's was really a tutorial for a 5-year child. Thanks for making it very easy. Very knowledgeable
@LearnFlutterCode
@LearnFlutterCode 3 жыл бұрын
Glad it was helpful!
@tudo925
@tudo925 11 ай бұрын
OMG this is really an extremely complete and detailed tutorial, it is save my day
@abbaadamu3927
@abbaadamu3927 3 жыл бұрын
Guy na God go bless you thanks a million for this, other KZbinr provider tutorials online assume that you're super smart and hit you with too much information but you laid this out nicely for the not so smart developer like me 😅🤗🔥 thank you sir
@fluttterdev1k
@fluttterdev1k Жыл бұрын
thanks bro
@eroo36
@eroo36 3 жыл бұрын
Really well explained!
@navaneethanthangaraj1866
@navaneethanthangaraj1866 3 жыл бұрын
Much Needed one for Me
@CaspianStudio
@CaspianStudio 3 жыл бұрын
Easy to understand explanation! TQ
@user-or7ji5hv8y
@user-or7ji5hv8y 3 жыл бұрын
this is very clear explanation.
2 жыл бұрын
Awesome! Congrats from Brazil!
@ajoco99
@ajoco99 2 жыл бұрын
Great tuto dude. you site is unreachable from Brazil
@mohsenzahabipour40
@mohsenzahabipour40 3 жыл бұрын
Great job men. Thanks.👍
@LearnFlutterCode
@LearnFlutterCode 3 жыл бұрын
Thank you too!
@bohdan8557
@bohdan8557 2 жыл бұрын
Such a simple and cool explanation!) Thanks from Ukraine
@prasantkumar7693
@prasantkumar7693 3 жыл бұрын
Thanks man!
@LearnFlutterCode
@LearnFlutterCode 3 жыл бұрын
No problem!
@saliouseck4263
@saliouseck4263 3 жыл бұрын
thx very much
@mruduladdipalli5417
@mruduladdipalli5417 3 жыл бұрын
Superb
@codaq4043
@codaq4043 2 жыл бұрын
This single video helps you go from beginner to intermediate
@JJ-fq3dh
@JJ-fq3dh 2 жыл бұрын
For state, i just use a global class and put everthing in there , then callbacks for all events passing value . Simple, easy for small projects. Have not needed a state management system yet . Works across multiple screens
@rohitv3955
@rohitv3955 3 жыл бұрын
Just the tutorial I was looking for, thanks! And can I know the name of that VSCode extension to highlight errors on the line itself? That would be a pretty useful extension for me to have.
@rohitv3955
@rohitv3955 3 жыл бұрын
@Teh Sunn Liu Thanks!
@hurolinci5986
@hurolinci5986 3 жыл бұрын
Good video. How can it be that the name variable gets changed in the Provider example even though it's declared final?
@Ali-cb3xt
@Ali-cb3xt 3 жыл бұрын
👍👍👍🔥🔥🔥
@harshkumaryadav3285
@harshkumaryadav3285 3 жыл бұрын
If we want multiple strings to return through provider ??
@abhishekbhambure5146
@abhishekbhambure5146 3 жыл бұрын
ListenableProvider and ValueListenableProvider is missing can you include it too ,Thanks for this video.
@LearnFlutterCode
@LearnFlutterCode 3 жыл бұрын
I don't know if they are common. I will take note on this.
@Mark-mo4bo
@Mark-mo4bo 3 жыл бұрын
Your website to your course is not working.
@abdallahhussein5997
@abdallahhussein5997 2 жыл бұрын
I can't find link in the description
@osamaa.abdelnasser1184
@osamaa.abdelnasser1184 2 жыл бұрын
I want to see all files for each example to understand the code, is there a github link?
@harshakuruwita339
@harshakuruwita339 3 жыл бұрын
Can you share course with udemy with certificate , for add it it linkdin and all
@LearnFlutterCode
@LearnFlutterCode 3 жыл бұрын
What course are you referring to?
@rahul9118
@rahul9118 3 жыл бұрын
Is the course in Udemy?
@UsamaKarim
@UsamaKarim 3 жыл бұрын
I am getting an error on ChangeNotifierProvider example that onPressed I have to make listen property false. But it's not giving you any error
@abhishekbhambure5146
@abhishekbhambure5146 3 жыл бұрын
Its because final example = Provider.of(context); is called from inside the build method and hence it requires listen property: false , like final before = Provider.of(context, listen: false); Starting from version 4.1.0 there are some shortcuts you can use to reduce the boilerplate code required for common actions. The library introduced two new extension methods you should prefer over the classic verbose way: // Default provider (with listen: true) final before = Provider.of(context); final after = context.watch(); // Non-listening provider (with listen: false) final before = Provider.of(context, listen: false); final after = context.read(); I recommend Flutter Complete Reference book , it will clear all your doubts
@UsamaKarim
@UsamaKarim 3 жыл бұрын
@@abhishekbhambure5146 That's awesome explanation 😍
@zhengen
@zhengen 3 жыл бұрын
Link to payment is broken for the course
@LearnFlutterCode
@LearnFlutterCode 3 жыл бұрын
Here is the link: sso.teachable.com/secure/805788/checkout/2902484/flutter-provider-state-management
@anuoluwabadmus7207
@anuoluwabadmus7207 2 жыл бұрын
Pls send github link.
@Rogueixpresents
@Rogueixpresents 2 жыл бұрын
whats ur purpose? explain provider :p
@saliouseck4263
@saliouseck4263 3 жыл бұрын
Hello thank's for the video it was helpful Can i see "getUsername() returning Future" code I have problem to test your code locally
Change Notifier Provider Explained
14:32
Learn App Code
Рет қаралды 20 М.
Flutter Provider: The Essential Guide
17:12
Andrea Bizzotto
Рет қаралды 69 М.
Получилось у Миланы?😂
00:13
ХАБИБ
Рет қаралды 4,7 МЛН
Я обещал подарить ему самокат!
01:00
Vlad Samokatchik
Рет қаралды 9 МЛН
Mama vs Son vs Daddy 😭🤣
00:13
DADDYSON SHOW
Рет қаралды 47 МЛН
Flutter Proxy Provider Simply Explained
13:44
Learn App Code
Рет қаралды 15 М.
Riverpod Simplified | Easy State Management
14:17
Tadas Petra
Рет қаралды 43 М.
Learn to use Isolates in Flutter | Simplified
10:28
CodeX
Рет қаралды 23 М.
Riverpod 2.0 - Complete Guide (Flutter Tutorial)
1:03:37
Reso Coder
Рет қаралды 109 М.
Flutter Riverpod 2 Tutorial for Beginners | Riverpod Generator
1:54:33
Rivaan Ranawat
Рет қаралды 74 М.
When, why, and how to multithread in Flutter
15:10
Flutter
Рет қаралды 62 М.
Flutter Provider EASY Tutorial
9:43
Flutter Mapp
Рет қаралды 46 М.
تجربة أغرب توصيلة شحن ضد القطع تماما
0:56
صدام العزي
Рет қаралды 63 МЛН
Xiaomi SU-7 Max 2024 - Самый быстрый мобильник
32:11
Клубный сервис
Рет қаралды 538 М.
АЙФОН 20 С ФУНКЦИЕЙ ВИДЕНИЯ ОГНЯ
0:59
КиноХост
Рет қаралды 1,2 МЛН
Looks very comfortable. #leddisplay #ledscreen #ledwall #eagerled
0:19
LED Screen Factory-EagerLED
Рет қаралды 9 МЛН