ListView inside listview flutter not scrolling

3 min read

While developing your Flutter app, you may need to include a scrollable widget such as ListView/GridView inside the Column. But when you add such a scrollable widget inside the Column, you get some error message in your console. So in this tutorial, we’ll see how to add ListView inside Column in Flutter.

Here’s what we’ll cover:

What does Error look Like?

The error message depends upon the following two scenarios:

  1. ListView inside Column with Vertical Scroll Direction
  2. ListView inside Column with Horizontal Scroll Direction

When you try to add the ListView with a vertical scroll inside the Column, you get an error that looks like the below:

Error Message: Vertical viewport was given unbounded height.

ListView inside listview flutter not scrolling

When you try to add the ListView with a horizontal scroll inside the Column, you get an error that looks like the below:

Error Message: Horizontal viewport was given unbounded height.

ListView inside listview flutter not scrolling

The reason for getting this error is because of adding the ListView inside the Column without giving proper constraint. By default, The ListView takes all the available space in a vertical direction and the Column widget doesn’t add any constraint on its children’s height. Hence it becomes difficult for the Flutter to calculate the size of the ListView.

TLDR: You added one ListView widget DIRECTLY inside the Column.

ListView inside listview flutter not scrolling

To add the ListView inside Column in Flutter, there are mainly three ways:

  1. Using Expanded (Recommended)
  2. Using ShrinkWrap
  3. Using SizedBox

You can wrap your ListView widget inside the Expanded widget and this will allow the ListView to take all the available as long as the Column allows.

Note: The main point here is to tell how much tall the ListView will be.

Code Example:

Column( children: [ Expanded( child: ListView( children: const <Widget>[...], ), ), ], )

Output:

ListView inside listview flutter not scrolling

Add the shrinkWrap property to the ListView and set it to True. This will make the ListView widget shrink down to its children’s size.

Code Example:

Column( children: [ ListView( shrinkWrap: true, children: const <Widget>[...], ), ], )

Output:

ListView inside listview flutter not scrolling

Wrapping your ListView inside the SizedBox widget will ensure that the ListView is displayed in a limited portion instead of infinite size.

Code Example:

Column( children: [ SizedBox( height: 400, child: ListView( children: const <Widget>[...], ), ), ], )

Output:

ListView inside listview flutter not scrolling

In this tutorial, we learned the top 3 ways to add the ListView inside Column in Flutter with practical examples. Basically, we can use the Widgets such as SizededBox or Expanded or simply the shrinkWrap property to include ListView inside Column. We also understood why did you get this error with a practical example.

Would you like to check other interesting Flutter tutorials?

Circle Icon Button in Flutter: Top 2 Easy Ways to Create (2022)