0 purchases
dynamic staggered grid
Dynamic Staggered Grid #
Dynamic staggered grid view
Usage #
DynamicStaggeredGridView(
padding: const EdgeInsets.symmetric(horizontal: 16),
crossAxisCount: 3,
crossAxisSpacing: 8,
mainAxisSpacing: 8,
itemHeight: 100,
itemBuilder: (context, index) {
var item = list[index];
return Text(index);
},
itemCount: list.length,
),
copied to clipboard
License #
MIT
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.