The class StatelessWidget
is marked as immutable
. However, I am using the scoped model
, which means that I avoid StatefulWidget
and use the model
to alter state
in StatelessWidget
. This leads to me having non-final fields
in StatelessWidget
, which doesn't cause errors
, because it's just a warning
. But I wondered if there is a better way?
Stateless widgets should only have final fields, with no exceptions. Reason: When the parent widget is rebuilt for some reason (screen rotation, animations, scrolling...), the build
method of the parent is called, which causes all widgets to be reconstructed.
Classes that extend StatefulWidget
must follow the same rule, because those are also reconstructed. Only the State
, which can contain mutable fields, is kept during the lifetime of widget in the layout tree.
There is no reason to avoid StatefulWidget
. It is a fundamental building block of Flutter.
In fact, ScopedModelDescendant
is also a Stateful widget. The primary benefit of scoped_model is that you can separate the business logic from the widget layer. It doesn't eliminate the need for Stateful widgets.
Use Stateful widgets for:
ScopedModel
widget). Store the Model
instance in the State
.TextEditingController
, state of a checkbox)AnimationController
sController
(TabController
, ScrollController
, ...)It is often a good idea to make the "page" widgets (widgets which build a Scaffold
, accessible using the Navigator
) stateful. Often these are the hosts for scoped models.