crossAxisCount:
This defines how many columns present and,
StaggeredTile.fit(value)
represent how may children to fit in a single column vertically
Example:
crossAxisCount: 2,
staggeredTileBuilder: (int index) => new StaggeredTile.fit(1),
will give you the desired output above