I am trying to write an App using Flutter, but every time I add a ListView, the following exception is thrown at runtime: Vertical viewport was given unbounded height<
Vertical viewport was given unbounded height<
Just wrap the ListView with Expanded widget.
new Expanded( child: new ListView( ..... ) );
This tells the ListView to take width and height as much as it can.