Why are stateful widgets defined as two classes in flutter?

后端 未结 3 573
轮回少年
轮回少年 2020-12-24 06:17

I\'m new to flutter/dart, so while I try to make an app I also try to understand why things are a certain way. In the flutter docs there is example code of a stateful widget

相关标签:
3条回答
  • 2020-12-24 06:36

    class YellowBird extends StatefulWidget

    StatefulWidget is an immutable class (Immutable class means that once an object is created, we cannot change its values). 1- The class must be declared as final (So that child classes can’t be created) 2- Data members in the class must be declared as final (So that we can’t change the value of it after object creation) 3- A parameterized constructor 4- Getter method for all the variables in it. No setters(To not have the option to change the value of the instance variable)

    class _YellowBirdState extends State

    State class which type is generic is a mutable class that can be instantiated with different values after creating its object.


    same as this StatefullWdget class which is immutable is calling a function of createState() which define the class State of the widget after its called in a flutter so we can change the values of widget again and again by this approach but we cannot change the type of Stateful or Stateless.

    0 讨论(0)
  • There are multiple reasons :

    • Widgets are immutable. Since StatefulWidget extends Widget it therefore must be immutable too. Splitting the declaration into two classes allows both StatefulWidget to be immutable and State to be mutable.

    • Widgets are instantiated using the syntax new MyWidget(). If we merged both classes into one, new MyWidget() would reset all the properties of the state every time its parent update.

    As for the explanation of class _MyStatefulState extends State<MyStateful>

    That is because the State class can access to it's Stateful part using the this.widget field. The generic is here to make that field of type MyStateful instead of just StatefulWidget. As you may want to access MyStateful properties.

    0 讨论(0)
  • 2020-12-24 06:52
    1. One of the main design decisions of Flutter is that it is cheap to re-create Widgets, so build() can be called to rebuild a branch of the widget tree when something changes. This works fine for stateless widgets which are given their immutable values through the constructor. But stateful widgets need to preserve their state across builds. In your example, the framework can create multiple YellowBirds, but it only ever creates one YellowBirdState. Each newly created YellowBird gets transparently hooked up to the existing YellowBirdState by the framework.

    2. A subclass of State needs to know its Widget type so that the compiler knows what type the variable widget is. In YellowBirdState you can refer to the Widget with widget. If YellowBird had a member variable final String foo, the compiler knows that widget.foo is the String called foo in YellowBird.

    0 讨论(0)
提交回复
热议问题