masonry_list_view_grid 0.0.4
masonry_list_view_grid: ^0.0.4 copied to clipboard
A new Flutter package that provides a masonry grid layout using list view.
Features #
Provides a masonry grid layout using list view.
Usage #
const children = [
'child 1',
'child 2',
'child 3',
'child 4',
'child 5',
'child 6',
'child 7',
'child 8',
'child 9',
'child 10',
];
MasonryGrid(
column: 2,
padding: EdgeInsets.all(8.0),
children: List.generate(
children.length,
(index) => Container(
child: Text(children[index]),
),
),
)