Questions: #Q1 What is Flutter?


When createState creates the state class, a buildContext is assigned to that state. A BuildContext is, overly



Yüklə 136,06 Kb.
Pdf görüntüsü
səhifə12/17
tarix07.01.2024
ölçüsü136,06 Kb.
#207354
1   ...   9   10   11   12   13   14   15   16   17
Flutter-Interview-Junior-Middle-Senior-Expert

When createState creates the state class, a buildContext is assigned to that state. A BuildContext is, overly
simplified, the place in the widget tree in which this widget is placed. All widgets have a bool this.mounted
property. It is turns true when the buildContext is assigned. It is an error to call setState when a widget is
unmounted.
initState()
This is the first method called when the widget is created (after the class constructor, of course.) initState is
called once and only once. It must also call super.initState(). This @override method is the best time to: -
Initialize data that relies on the specific BuildContext for the created instance of the widget. - Initialize
properties that rely on this widgets 'parent' in the tree. - Subscribe to Streams, ChangeNotifiers, or any
other object that could change the data on this widget.


@override
initState() {
super.initState();
// Add listeners to this class
cartItemStream.listen((data) {
_updateWidget(data);
});
}
didChangeDependencies()
The didChangeDependencies method is called immediately after initState on the first time the widget is built.
It will also be called whenever an object that this widget depends on data from is called. For example, if it
relies on an InheritedWidget, which updates. build is always called after didChangeDependencies is called,
so this is rarely needed. However, this method is the first change you have to call
BuildContext.inheritFromWidgetOfExactType. This essentially would make this State 'listen' to changes on a
Widget it's inheriting data from. The docs also suggest that it could be useful if you need to do network calls
(or any other expensive action) when an InheritedWidget updates.

Yüklə 136,06 Kb.

Dostları ilə paylaş:
1   ...   9   10   11   12   13   14   15   16   17




Verilənlər bazası müəlliflik hüququ ilə müdafiə olunur ©azkurs.org 2024
rəhbərliyinə müraciət

gir | qeydiyyatdan keç
    Ana səhifə


yükləyin