Updated 28 April 2023
Flutter Staggered grid view supports multiple columns with different row sizes.
In this blog, we will look to design a page with the different column count at the different row.
Read more about Flutter app development from mobikul.
StaggeredTileBuilder is used to create different no of the column in row and height of each tile.
There are three types of staggered tile, StaggeredTile.count
, StaggeredTile.fit
StaggeredTile.extent
.
We will use StaggeredTile.extent(this.crossAxisCellCount, this.mainAxisExtent).
Where crossAxisCellCount
is the number of column in a row and mainAxisExtent
is the height of row item/tile.
Here, we will show the 1,2,3 column count on different rows.
Let’s calculate crossAxisCellCount
SingleColumn crossAxisCellCount
= 1*2*3=6/1 =6
TwoColumnGrid crossAxisCellCount
= 1*2*3=6/2 =3
ThreeColumnGrid crossAxisCellCount
= 1*2*3=6/3 =2
We will get the result as attached image
Let’s check the complete code.
I hope this blog will help to make the different number of columns in different rows.
Happy Learning 🙂
Reference Links :
If you have more details or questions, you can reply to the received confirmation email.
Back to Home
Be the first to comment.