Home > Software engineering >  When to use GridView and ListView in flutter since they do the same thing?
When to use GridView and ListView in flutter since they do the same thing?

Time:03-21

What is the differentiation of ListView and GridView? ListView.builder, ListView.separated, Listview.custom vs GridView.builder, GridView.count, GridView.extent

CodePudding user response:

They are not the same thing.

ListView is for one directional way of showing things e.g. list or image carousel.

GridView on the other hand is ready for 2D display of things, e.g. for photo gallery .

CodePudding user response:

You can take a look at the official docs for the difference. Let's see how they're defined in the documentation:

enter image description here

enter image description here

  • Related