Column mainAxisSize: MainAxisSize.min not working Column mainAxisSize: MainAxisSize.min not working dart dart

Column mainAxisSize: MainAxisSize.min not working


Add a height constraint to your ListView widget , like this:

SizedBox(      height: 100.0,      child: ListView.builder(      ...

Also you can center your items:

        Center(          child: SizedBox(            height: 100.0,            child: ListView.builder(            ...