Flutter: StatelessWidget.build called multiple times

11,173

https://docs.flutter.io/flutter/widgets/FutureBuilder-class.html

The future must have been obtained earlier, e.g. during State.initState, State.didUpdateConfig, or State.didChangeDependencies. It must not be created during the State.build or StatelessWidget.build method call when constructing the FutureBuilder. If the future is created at the same time as the FutureBuilder, then every time the FutureBuilder's parent is rebuilt, the asynchronous task will be restarted.

A general guideline is to assume that every build method could get called every frame, and to treat omitted calls as an optimization.

(taken from https://github.com/flutter/flutter/issues/27847#issuecomment-462868299)

Share:
11,173

Related videos on Youtube

footurist
Author by

footurist

Updated on June 04, 2022

Comments

  • footurist
    footurist almost 2 years

    I always put code in my questions here, but this time it's not possible since the bug could be anywhere in a thousand lines of code. However:

    I noticed that the build method of my main screen (StatelessWidget), which is a descendant of a MaterialApp (home property), get's as usual called once while in debug mode but three times when in release mode.

    Under which circumstances could such a thing happen? I already tried reproducing multiple times, but failed.

    EDIT:

    The problem is that I am storing the screen size that I get from a media query as a global variable, so that I can access it from anywhere. Now I need to access that variable inside the init method of a stateful widget further down the tree. Seems to be no problem in debug mode, but in release mode the build method of the widget that makes the media query (must be inside build) weirdly gets called one time, the result of the media query being a Size(0.0, 0.0), then the init method of the widget further down the tree gets called and then the build method with the media query gets called another two times (this time with the correct screen size). The result is that I don't have he correct screen size inside the init method.

    • soupjake
      soupjake over 5 years
      What issues are you getting being caused by the build method being called multiple times?
    • Günter Zöchbauer
      Günter Zöchbauer over 5 years
      build() being called multiple times is expected. For instance when the keyboard pops up the screen size changes multiple times during the animation. Each frame build() of your root widget and all its descendants are called to allow them to adjust the view to the new screen size.
    • Günter Zöchbauer
      Günter Zöchbauer over 5 years
      Use a StreamController instead of a field then anyone interested can subscribe (listen) to mediaquery changes.
    • Rémi Rousselet
      Rémi Rousselet over 5 years
      StatfulWidget's didChangeDependencies is here for that. You can combine it with MediaQuery.of(context)