304
class MyHome extends StatefulWidget {
  @override
  State<StatefulWidget> createState() => new MyHomePage2();
}

class MyHomePage2 extends State<MyHome> {
  List items = new List();

  buildlist(String s) {
    setState(() {
      print("entered buildlist" + s);
      List refresh = new List();
      if (s == 'button0') {
        refresh = [
          new Refreshments("Watermelon", 250),
          new Refreshments("Orange", 275),
          new Refreshments("Pine", 300),
          new Refreshments("Papaya", 225),
          new Refreshments("Apple", 250),
        ];
      } else if (s == 'button1') {
        refresh = [
          new Refreshments("Pina Colada", 250),
          new Refreshments("Bloody Mary", 275),
          new Refreshments("Long Island Ice tea", 300),
          new Refreshments("Screwdriver", 225),
          new Refreshments("Fusion Cocktail", 250),
        ];
      } else if (s == 'button2') {
        refresh = [
          new Refreshments("Virgin Pina Colada", 250),
          new Refreshments("Virgin Mary", 275),
          new Refreshments("Strawberry Flush", 300),
          new Refreshments("Mango Diver", 225),
          new Refreshments("Peach Delight", 250),
        ];
      } else {
        refresh = [
          new Refreshments("Absolute", 250),
          new Refreshments("Smirnoff", 275),
          new Refreshments("White Mischief", 300),
          new Refreshments("Romanov", 225),
          new Refreshments("Blender's Pride", 250),
        ];
      }

      for (var item in refresh) {
        items.add(new ItemsList(item));
      }
    });
  }

  @override
  Widget build(BuildContext context) {
    var abc = MediaQuery.of(context).size;

    print(abc.width);

    var width = abc.width / 4;

    Text text = new Text("Dev");
    Text text2 = new Text("Sneha");
    Text text3 = new Text("Prashant");
    Text text4 = new Text("Vikesh");

    var pad = const EdgeInsets.all(10.0);

    Padding pad1 = new Padding(child: text, padding: pad);
    Padding pad2 = new Padding(child: text2, padding: pad);
    Padding pad3 = new Padding(child: text3, padding: pad);
    Padding pad4 = new Padding(child: text4, padding: pad);

    ListView listView = new ListView(children: <Widget>[
      new Image.asset('images/party.jpg'),
      pad1,
      pad2,
      pad3,
      pad4
    ]);

    Drawer drawer = new Drawer(child: listView);

    return new Scaffold(
      drawer: drawer,

      appBar: new AppBar(
        title: new Text('Booze Up'),
      ),
      body: new Column(children: <Widget>[
        new ListView.builder(
          scrollDirection: Axis.horizontal,
          itemCount: 4,
          itemBuilder: (BuildContext context, int index) {
            return new Column(children: <Widget>[
              new Container(
                child: new Flexible(
                    child: new FlatButton(
                  child: new Image.asset('images/party.jpg',
                      width: width, height: width),
                  onPressed: buildlist('button' + index.toString()),
                )),
                width: width,
                height: width,
              )
            ]);
          },
        ),
        new Expanded(
            child: new ListView(
          padding: new EdgeInsets.fromLTRB(10.0, 10.0, 0.0, 10.0),
          children: items,
          scrollDirection: Axis.vertical,
        )),
      ]),

      floatingActionButton: new FloatingActionButton(
        onPressed: null,
        child: new Icon(Icons.add),
      ), // This trailing comma makes auto-formatting nicer for build methods.
    );
  }
}

class Refreshments {
  String name;
  int price;

  Refreshments(this.name, this.price);
}

class ItemsList extends StatelessWidget {
  final Refreshments refreshments;

  ItemsList(this.refreshments);

  @override
  Widget build(BuildContext context) {
    return new ListTile(
      onTap: null,
      title: new Text(refreshments.name),
    );
  }
}

Full code

I am having two errors:

1] Horizontal viewport was given unbounded height . A horizontal viewport was given an unlimited amount of vertical space in which to expand.

2] setState() or markNeedsBuild called during build A vertical renderflex overflowed by 99488 pixels.

Please help me with it . I am creating this app where on each image click a list should be shown below . The images will be in a row and the list should be shown below the row.

Thank you.

Boken
  • 4,825
  • 10
  • 32
  • 42
Divyang Shah
  • 3,577
  • 5
  • 14
  • 27

9 Answers9

560

In my case I was calling the setState method before the build method had completed the process of building the widgets.

You can face this error if you are showing a snackBar or an alertDialog before the completion of the build method, as well as in many other cases. So, in such cases you should use a call back function as shown below:

WidgetsBinding.instance.addPostFrameCallback((_){

  // Add Your Code here.

});

or you can also use SchedulerBinding which does the same:

SchedulerBinding.instance.addPostFrameCallback((_) {

  // add your code here.

  Navigator.push(
        context,
        new MaterialPageRoute(
            builder: (context) => NextPage()));
});
Dre
  • 39
  • 3
Developine
  • 12,483
  • 8
  • 38
  • 42
  • 21
    This should be the accepted answer. This error occurred to me when I was creating a new `MaterialPageRoute` in a `FutureBuilder` (a login success screen). – Phani Rithvij Apr 15 '20 at 07:03
  • 1
    This is working, thanks! I was getting the same issue when calling `Navigator.of(context).popUntil` method – damato Jun 03 '20 at 20:40
  • I used it to display SfCalendar half screen on month view and full screen on schedule view. Worked seamlessly. Thanks! – Hitesh Pandey Dec 22 '22 at 19:09
204

Your code

onPressed: buildlist('button'+index.toString()),

executes buildlist() and passes the result to onPressed, but that is not the desired behavior.

It should be

onPressed: () => buildlist('button'+index.toString()),

This way a function (closure) is passed to onPressed, that when executed, calls buildlist()

Günter Zöchbauer
  • 623,577
  • 216
  • 2,003
  • 1,567
  • I am still getting the error: Horizontal viewport was given unbounded height . What does that mean ? – Divyang Shah Dec 01 '17 at 11:48
  • I guess I have to leave that one to @Darky or someone else. – Günter Zöchbauer Dec 01 '17 at 11:50
  • 1
    @DivyangShah you are using a Container as the parent of Flexible, it should be the other way around. – Shady Aziza Dec 01 '17 at 12:04
  • resolve my error, does't understand this difference . maybe there's link to more detail about that? – chengxcv5 Oct 13 '21 at 06:18
  • 2
    @chengxcv5 look up "closures". The difference is that if you assign a reference to a function to `onPressed`, that function can be called by the widget when it recognizes a tap. The problem with the code in the question is, that it doesn't pass a function, instead the function is called immediately and the return value of that function is assigned to `onPressed`. The `() => ...` makes it an inline function without a name (closure) and here without parameters, that when called executes `buildlist(...)` – Günter Zöchbauer Oct 13 '21 at 09:49
  • 2
    Important distinction here is - passing the function itself versus it's return value. thank you..this worked for me. Also here's a link explaining what a function "Closure" is - Function defined inside another function (parent) often have unrestricted access to the local variables of the parent function. Some languages allow this and Dart is one of them. https://medium.com/flutter-community/understanding-lexical-closures-in-dart-flutter-863ec361a614 – Naveen Katragadda Mar 19 '22 at 17:42
122

I was also setting the state during build, so, I deferred it to the next tick and it worked.

previously

myFunction()

New

Future.delayed(Duration.zero, () async {
  myFunction();
});
alfiepoleon
  • 1,781
  • 1
  • 16
  • 18
26

The problem with WidgetsBinding.instance.addPostFrameCallback is that, it isn't an all encompassing solution.

As per the contract of addPostFrameCallback -

Schedule a callback for the end of this frame. [...] This callback is run during a frame, just after the persistent frame callbacks [...]. If a frame is in progress and post-frame callbacks haven't been executed yet, then the registered callback is still executed during the frame. Otherwise, the registered callback is executed during the next frame.

That last line sounds like a deal-breaker to me.

This method isn't equipped to handle the case where there is no "current frame", and the flutter engine is idle. Of course, in that case, one can invoke setState() directly, but again, that won't always work - sometimes there just is a current frame.


Thankfully, in SchedulerBinding, there also exists a solution to this little wart - SchedulerPhase

Let's build a better setState, one that doesn't complain.

(endOfFrame does basically the same thing as addPostFrameCallback, except it tries to schedule a new frame at SchedulerPhase.idle, and it uses async-await instead of callbacks)

Future<bool> rebuild() async {
  if (!mounted) return false;

  // if there's a current frame,
  if (SchedulerBinding.instance.schedulerPhase != SchedulerPhase.idle) {
    // wait for the end of that frame.
    await SchedulerBinding.instance.endOfFrame;
    if (!mounted) return false;
  }

  setState(() {});
  return true;
}

This also makes for nicer control flows, that frankly, just work.

await someTask();

if (!await rebuild()) return;

await someOtherTask();
Dev Aggarwal
  • 7,627
  • 3
  • 38
  • 50
12

I recieved this error due to a pretty dumb mistake, but maybe someone is here because he did the exact same thing...

In my code i have two classes. One class (B) is just there to create me a special widget with a onTap function. The function that should get triggered by the user tap was in the other class (A). So i was trying to pass the function of class A to the constructor of class B, so that i could assign it to the onTap.

Unfortunatly, instead of passing the functions i called them. This is what it looked like:

ClassB classBInstance = ClassB(...,myFunction());

Obviously, this is the correct way:

ClassB classBInstance = classB(...,myFunction);

This solved my error message. The error makes sense, because in order for myFunction to work the instance of class B and so my build had to finish first (I am showing a snackbar when calling my function).

Hope this helps someone one day!

Eric Pleines
  • 191
  • 1
  • 4
2

Just remove the curly bracket {} from onTap() in case of InkWell and onPressed() in case of GestureDetector or buttons etc.

Kashif Ahmad
  • 203
  • 3
  • 15
1

when you have use onWillpop method for going back then come this type of error

onWillPop: onBackPressedWillPopeback());

replace with this

onWillPop: () => onBackPressedWillPopeback());

I am sure your error will be solved... If any other query ask me any time...

0

In my case, I was using GetX and a Slider. To my slider, I used a the Rx variable directly instead of the actual value.

My Code previously.

RxDouble sliderValue = 1.0.obs;

MySlider(
   value: this.sliderValue
)

I changed my code to:

MySlider(
   value: this.sliderValue.value
)

Now the error is gone.

Dharman
  • 30,962
  • 25
  • 85
  • 135
adi
  • 984
  • 15
  • 33
0

In my case problem is GetBuilder()

My Code previously.

UserDataUptade(Map<String,dynamic> newUserData){
  userData=newUserData;
  update();
}

I changed my code to:

UserDataUptade(Map<String,dynamic> newUserData){
  userData=newUserData;
  WidgetsBinding.instance.addPostFrameCallback((_) {
    update();
  });
}

and it's works

cokeman19
  • 2,405
  • 1
  • 25
  • 40