Flutter in Practice - E22: Immutable InheritedWidget as Data Provider

preview_player
Показать описание
Flutter in Practice is a free programming course that teaches how to write a mobile application using Flutter framework and Dart programming language. Instead of teaching concepts and ideas in both Flutter and Dart, this course showcases a process of building an actual, mobile application.
In this tutorial, we will create an email client that exclusively supports JMAP protocol.

Рекомендации по теме
Комментарии
Автор

You can use to have multiple subscribers .

wearecode
Автор

2:52 Be aware that inheritFromWidgetOfExactType is now deprecated. Use instead.
Old syntax: return as Provider).data;
New syntax: return as Provider).data;

andrewmd
Автор

Hi is a the great lessons. I would like to ask two questions: how can i request when i have an object not a string and sprinkle not integrate Create and update?

NicB
Автор

How are the streams disposed though ? you will have 1 more subscribe count once you rebuild the Contacts Screen ?

wearecode
Автор

ContactsSearch and ContactsScreen need different streams, you extracted The chip so you can use a differentOne, but the Custom StreamBuilder you made has one stream...

wearecode
Автор

thank you for this video, but can I get your code in github?

aldiirsanmajid
Автор

The sun is beautiful today, and you look like you're in jail hahah

AntonioBrandao
Автор

Inherited widget creating lot of problems in structure

tirupatirao
Автор

NOTE: As of now is deprecated replace the return in Provider with

`return as Provider).data;`

FonkamL