Put multiple ListViews with in a column in Flutterflow

228 Views Asked by At

I am developing an app in the Flutterflow no-code app development tool. I have a column where I want to put two ListViews, like below

Column

  • ListView#1
  • ListView#2

I have already added ListView#1 and am getting an error when I try to add ListView#2 to the column. The error message is:

A Column cannot be set to Scrollable when a child is set to Expanded

2

There are 2 best solutions below

0
On

For both use inside your ListView use the below properties

physics: const BouncingScrollPhysics(),
shrinkWrap: true,

You can also follow this tutorial

0
On

You can try Expanded widget

Column:
    Expanded:
        child: ListView#1
    Expanded:
        child: ListView#2

What is the difference between the Expanded widget and the Flexible widget?