Flutter: Mutable fields in stateless widgets

4,150

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 the 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:

  • Injecting scoped models into the tree (the widget that builds the ScopedModel widget). Store the Model instance in the State.
  • Storing user input (TextEditingController, state of a checkbox)
  • Animated widgets which require AnimationControllers
  • To store anything that ends with Controller (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.

Share:
4,150
footurist
Author by

footurist

Updated on December 07, 2022

Comments

  • footurist
    footurist over 1 year

    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?