How to make flutter card auto adjust its height depend on content
The problem comes from SliverGridDelegateWithFixedCrossAxisCount: Creates grid layouts with a fixed number of tiles in the cross axis This delegate creates grids with equally sized and spaced tiles. I recommend you to use flutter_staggered_grid_view: and to give up to AspectRatio widget. More about tiles here. body: StaggeredGridView.countBuilder( crossAxisCount: 2, itemCount: 6, itemBuilder: (BuildContext context, int … Read more